How can I force excel 2010 to accept a volatile function. Note I don't need the date Now() to recalculate on reload every time.
The cell just doesn't accept my formula as a formula though its pretty basic. All it does is compare dates in an if.
so on first go I used the now function to compare @[Scheduled Start] which is in this format 9/01/2015 2:00:00 PM to now and return Todo if its greater or Done if its less.
I get no error or result it just sits in the cell as if its text.
So I created a third column and called it wordate and manually entered a date in the same format and the formula became.
But still nothing, if I inspect the formula all I get is that I have a volatile result.
The cell just doesn't accept my formula as a formula though its pretty basic. All it does is compare dates in an if.
so on first go I used the now function to compare @[Scheduled Start] which is in this format 9/01/2015 2:00:00 PM to now and return Todo if its greater or Done if its less.
I get no error or result it just sits in the cell as if its text.
Code:
=IF([@[Scheduled Start]]>(NOW()),"Todo","Done")
So I created a third column and called it wordate and manually entered a date in the same format and the formula became.
Code:
=IF([@[Scheduled Start]]>[@workdate],"Todo","Done")
But still nothing, if I inspect the formula all I get is that I have a volatile result.