Conditional Formatting - If cell in range = value, then highlight all cells to the right of value

philip_eng

New Member
Joined
Jun 8, 2017
Messages
6
Hi,

I have a range of cells J3:BK3. Withing that range 1 of the cells will have the text value "C".
I want to conditionally format the row so if a cell in this range = C, then highlight all cells to the right of this cell.

Any idea how to do this?

Phil
 
try this CF (use formula to determine) in J3 and apply to the range

=COLUMN()>MATCH("C",3:3,0)
 
Upvote 0
I have another conditional formatting question that I cannot get working. I have dates in row range J3-BK3. I want to highlight the column if the date value falls within this week.
 
Upvote 0
assuming this week is Mon-Sun, try this CF (formula to determine) in J1, and apply to all columns in range

Code:
=AND(J$3>=TODAY()-WEEKDAY(TODAY(),3),J$3<=TODAY()-WEEKDAY(TODAY(),3)+6)
 
Upvote 0

Forum statistics

Threads
1,226,812
Messages
6,193,116
Members
453,777
Latest member
Miceal Powell

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