Conditional formatting formula required for day of week and a value

laura_pink

New Member
Joined
Aug 21, 2014
Messages
30
Office Version
  1. 365
Platform
  1. Windows
Hi,
I have a really simple spreadsheet where column A is the date, column B is the activity total shown as a number and column C states the day of the week i.e. "Mon".
I need to set some conditional formatting so that when column C is "Mon" and column B is greater than 415, then the value in column B turns red.

I have tried this and its not working:
=AND($C$3:$C$2734="Mon",$B$3:$B$2734>415) I have also tried it the other way round =AND($B$3:$B$2734>415,$C$3:$C$2734="Mon")
I have also tried it without the commas around Mon - nothing works.

Any ideas? Many Thanks,
Laura
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
How about
Excel Formula:
 =AND($C3="Mon",$B3>415)
 
Upvote 0
Didn't work I'm afraid. It turned some Saturdays red instead??
Thanks for the suggestion.
 
Upvote 0
Is row 3 the first row of data?
Also what is the applies to range?
 
Upvote 0
What is the applies to range?
 
Upvote 0
Everything runs from A3 to C2734 - sorry not sure what you mean I am a novice
 
Upvote 0
If you click on Conditional formatting, Manage Rules you will see something like
1600877036967.png

What does it say in the applies to box ( in the above case =$C$1:$I$27)
 
Upvote 0
When you write a CF formula for a multiple cell range, you need to write it as it pertains to the FIRST cell in that range.
So if you are choosing all of columns B and/or C, you need to write the formula for row 1, i..e
Excel Formula:
=AND($C1="Mon",$B1>415)
 
Upvote 0

Forum statistics

Threads
1,214,960
Messages
6,122,479
Members
449,088
Latest member
Melvetica

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