--- Edit about answer
As martindwilson indicated, no INDIRECT usage was needed. scroll below for the solution.
---
Hi.
I'm no Excel expert, and I've been working the past three days in completing a conditional formatting formula with 2 conditions. Finally got it working, and the evaluation is TRUE, but the conditional formatting I specified is not being applied.
I've uploaded a new excel file with 3 samples of my records, no macros or anything, in case someone prefers to look at the implementation rather than read the full explanation.
http://share1t.com/3ovxm8
My scenario is simple. I have rows of Tasks (Task Name, Expected Finish Date, Date Closed).
I just want to highlight the rows that dont have a value for "Date Closed", and for which the Expected Finish Date has already passed.
The formula I came up with is this:
=AND(INDIRECT("D"&ROW())="", DATEVALUE(TEXT(TODAY(), "MM/DD/YYYY")) > INDIRECT("C"&ROW()))
where the D row contains the Closed Date and the rest is a comparison of date values, since INDIRECT("C"&ROW()) which is an evaluation of the Expected Finish Date returns a numeric value, I had to find how to convert the value returned for TODAY() to that numeric format.
Like i said, both conditions are returning TRUE, and in the worksheet i created two columns with the evaluation of each condition, both also stating true, however, my conditional formatting (a very basic Row Fill) is not being applied.
Can anyone please help?
Thanks
Bookmarks