color cells of period

  • Thread starter Thread starter abu abdullah........halsaeed85
  • Start date Start date
A

abu abdullah........halsaeed85

hi all
i have column c for start month & column d for end month then i have
12 column to give the period from e to p for year months from jan to
dec i need if i put in c4 as start month as example feb & put in d4
jul as end month i need to color cells from f4 to k4 means from feb
column to jul column & so on in other rows . any help will be
appreciated .
thanks for all
 
I usually convert the month names to serial dates (a number) and then test if
one serial date is less than or greater than a reference date


For example to convert Jany to a serial date

A1 = January
Then in B1 to get a serial date
=DateValue(A1&" 1, 2008"), Notice the blank space before the 1.

This formula produces =DateValue("January 1, 2008")

I Assume you have the month names in Row 1.
Now we can use conditional formating in F4 use

=and(DateValue(F$1&" 1, 2008")>=DateValue($C4&" 1, 2008"),DateValue(F$1&" 1,
2008")<=DateValue($D4&" 1, 2008"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Excel Help with dates 2
Subtracting AD and/or BC dates 21
Looking formula that gives total of remaining months 6
Input Box Macro Help 6
IF Function 6
Form return lookup values 1
Average/Sum formula with offset 5
Calendar 1

Back
Top