Conditional Formatting for month only

SweetBones

New Member
Joined
Jan 29, 2014
Messages
2
I'm trying to have a cell highlight red if it is the current month, orange if next month. The actual input is text exa "January". Not a date. Is there a way where we can do this to where it will always highlight the current month even if the sheet is viewed in say... March?
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Assuming your celll containing month is A1 try using this formula in conjuction with the "Use a formula to determine which cells to format" conditional formatting:

=A1=TEXT(TODAY(),"mmmm")
 
Upvote 0
Is the cell you want highlighting the same cell as you input the month?
 
Upvote 0
yes. some more background of what i'm trying to do: We have to preform an assessment for each persons birth month. so if i have a column of people's birth month i want to have the current month highlighted in red so that people know that these members need to be seen. then orange for next month so that they can schedule that assessment but have it be dynamic in the way that if we view it in feb then feb will be the current month highlighted. I dont even know if this is possible.
 
Upvote 0
Do you know how to apply conditional formatting; using the "Use a formula method"?

If so try:

Excel Workbook
A
1Birth Month
2January
3March
4February
5April
6May
7January
8December
9March
10February
11May
12January
13January
14March
15February
16May
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A21. / Formula is =A2=TEXT(EDATE(TODAY(),1),"mmmm")Abc
A22. / Formula is =A2=TEXT(TODAY(),"mmmm")Abc
 
Upvote 0
something liek this?


Excel 2010
ABCD
91/5/20151/30/2014TRUEhighlight red
102/1/20141/30/2014TRUEhighlight orange
113/1/20141/30/2014FALSE
Sheet1
Cell Formulas
RangeFormula
B9=DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY()))
B10=DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY()))
B11=DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY()))
C9=IF(MONTH(A9)=MONTH(DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY()))),TRUE,FALSE)
C10=IF(MONTH(A10)=MONTH(DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())))+1,TRUE,FALSE)
C11=IF(MONTH(A11)=MONTH(DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())))+1,TRUE,FALSE)
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,581
Members
449,089
Latest member
Motoracer88

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