Referencing a column which holds birth dates, I would like
to highlight subsequent birthdays using conditional
formatting.
Mikey
Hi Mikey,
Assuming that your date of births are listed in Column A:
1) Select the range of cells you would like conditionally formatted
2) Format > Conditional Format
3) Change "Cell Value Is" to "Formula Is"
4) Enter this formula --> =DATE(YEAR(TODAY()),MONTH(A1),DAY(A1))>TODAY()
5) Click on "Format" and select the formatting you want
6) Click Ok
If you want the entire row formatted, then repeat the above but substitute
the formula with this one:
=DATE(YEAR(TODAY()),MONTH($A1),DAY($A1))>TODAY()
Hope this helps!