Excel 2010 - Accept a volatile function

Sayth

Board Regular
Joined
Jun 4, 2010
Messages
212
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.
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.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
In what columns are Scheduled Start and workdate and where did you enter your formula? If, when entering a formula, you only see the formula, make sure that the cell is not formatted as Text before entering it. The NOW function is volatile when used in any formula.
 
Upvote 0

Forum statistics

Threads
1,214,976
Messages
6,122,539
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top