Excel Conditional forward based on date older then -
i have excel document containg following data
(a1)week no (b1)name (c1)save untill (d1)description 13 name 1 2014-06-30 description 1 14 name 2 2014-01-30 description 2 15 name 3 2013-12-31 description 3 16 name 4 2014-03-31 description 4 17 name 5 2014-06-30 description 5
the goal is
- to color the row green if "save untill" date more 180 days based on current date.
- to color row red if "save untill" date less 180 days based on current date.
i cant figure out, hope guys can me out!
regards niklas
in case use following applied a2:d6 or whatever full range is:
for red colored cells use:
=$c2<today()+180
for green colored cells use:
=$c2>today()+180
the absolute reference ($c2) allows entire row highlighted color instead of cell.
Comments
Post a Comment