Dec 07 2023 09:37 AM
Hello Excel community.
I am creating an inventory log for work; were we list clients for our clerical unit to process fax. mail and so on.
MY hope was to include Conditional formatting, dark highlight each row when it is completed.
This verifies the case was complete based on Column-N that has a date populated. When a date is completed that said row will only highlight from Columns B3 to K3 down to Row 601
Some occasions we may remove the date because the case needs to be reworked, so it may be removed therefore the highlight should be removed as well.
Any assistance is greatly appreciated.
Dec 07 2023 12:21 PM - last edited on Apr 24 2024 10:15 AM by MeenahKhosraw
Dec 07 2023 12:21 PM - last edited on Apr 24 2024 10:15 AM by MeenahKhosraw
Solution@James818 You want to apply conditional formatting based on a custom formula. This is the formula to use:
=$N3<>""
I made a custom video showing how I came up with the formula and how to correctly apply it: https://www.youtube.com/watch?v=8iotSp2lNtc
Optional tip if this was helpful: [link removed by admin]
Dec 07 2023 12:38 PM
Dec 16 2023 10:39 PM
Dec 19 2023 05:30 AM
@LouisDeconinck I’ve tried multiple times to follow your excellent instructions, but I can’t get it to work. I’m missing something.
I want the entire row of my table to highlight once a date has been entered in column G. As long as there is no date in that column, I want the row to stay unfilled.
I manually coloured the first row in my example, but I’m sure there’s a better and easier way. Can you please help?
Dec 19 2023 06:49 AM - last edited on Apr 24 2024 10:19 AM by MeenahKhosraw
Dec 19 2023 06:49 AM - last edited on Apr 24 2024 10:19 AM by MeenahKhosraw
@Jewles813 My earlier video instructions should also apply here. You want to use conditional formatting based on a formula. In your case the formula would look like:
=$G2<>""
You need to use G2 as that is the cell of the first row you want to check. Notice how there's a $ in front of the G, but not the 2. That's very important. It allows the conditional formatting to be shifted downwards.
Make sure that the conditional formatting is applied to your entire table, so from A2:G1000
Optional tip if this was helpful: [link removed by admin]
Dec 19 2023 06:54 AM - last edited on Apr 24 2024 10:25 AM by MeenahKhosraw
Dec 19 2023 06:54 AM - last edited on Apr 24 2024 10:25 AM by MeenahKhosraw
@Shipwreck818 If you want today's date to appear when either cell L3 or M3 is filled out, you can use the following formula:
=IF(OR(L3<>"", M3<>""), TODAY(), "")
Optional tip if this was helpful: [link removed by admin]
Dec 19 2023 07:33 AM
Dec 07 2023 12:21 PM - last edited on Apr 24 2024 10:15 AM by MeenahKhosraw
Dec 07 2023 12:21 PM - last edited on Apr 24 2024 10:15 AM by MeenahKhosraw
Solution@James818 You want to apply conditional formatting based on a custom formula. This is the formula to use:
=$N3<>""
I made a custom video showing how I came up with the formula and how to correctly apply it: https://www.youtube.com/watch?v=8iotSp2lNtc
Optional tip if this was helpful: [link removed by admin]