0
I have a sheet that looks like this:
So I have a list of documents to create, and I mark "1" on the column with the month in which I have created them.
Now I've been asked to put "1" also as a forecast documents not yet created, and these should be painted yellow. The sheet is actually huge and I wanted to automate it. I tried the Conditional Formatting using the formula:
=AND(B4>0;MONTH(B$3)>MONTH(TODAY());YEAR(B$3)>YEAR(TODAY()))
Which works fine for the cell B4
, but when I drag it over the sheet the formula doesn't automatically adjust.
Does anyone have a clue about it? Or maybe a link to another topic about it?
Remove the
$
onB$3
. – jcbermu – 2016-04-14T13:17:09.157