Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
if(reloadtime()=today()
can someone see whats wrong with the above expression/
you are missing ) at the end
So something like
IF(ReloadTime()=TODAY(),GREEN(),RED())
Samuel
reloadtime() returns a datetime, whereas today() returns just a date.
So use :
if ( date(floor(reloadtime())) =today() ..................
Which converts reloadtime() to a pure date.
Best Regards, Bill Markham
reloadTime() return the day AND the time the document was reloaded, and today() return only todays day. You should better use:
Date(Floor(ReloadTime()))=today()
My guess would be that reloadtime() is a time stamp and Today() is just a date. Use the date function to get them into the same format.
If(Date(Floor(ReloadTime()), 'M/DD/YYYY') = Date(Floor(Today()), 'M/DD/YYYY'), <Condition Here>)