Applying Conditional Formatting To A schedule?

Kstrak

New Member
Joined
Jul 6, 2019
Messages
3
I'm working on a Schedule with a couple hundred people and forecasting it out a couple months and am having trouble getting some conditional formatting to work with the table. The example is a 8 days (D3-L3 is 7/5-7/13). I would like the names of the people (in the column B4-B7) to be highlighted green if there is a "1", "IN", or "OUT" (in rows D4-D7) but only references the data in the column that matches todays date and have it update automatically day by day based on the current date.

Thanks
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Put this as the B4 conditional format formula and copy down

=SUMPRODUCT(($D$3:$L$3=TODAY())*(($D4:$L4="IN")+($D4:$L4="OUT")+($D4:$L4=1)))
 
Upvote 0
Hi & welcome to MrExcel.
How about
=OR(INDEX($D$4:$L$9,ROW(A1),MATCH(TODAY(),$D$3:$L$3,0))=1,INDEX($D$4:$L$9,ROW(A1),MATCH(TODAY(),$D$3:$L$3,0))="IN",INDEX($D$4:$L$9,ROW(A1),MATCH(TODAY(),$D$3:$L$3,0))="OUT")
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,251
Members
448,556
Latest member
peterhess2002

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top