Strugling getting a simple formula working in a calculated field in Sharepoint 2010. I have the formula below:
=IF(([Column1]-[Column2])<0.33334,"OK","Not OK")
Basically I want this formula to return is yes or no the duration between the 2 dates is greater than 8 hours (in decimels it's 0.33334). This is the data the columns contains to give you an idea:
(text fields) Column1 = 2016-03-24 13:00
(text fields) Column2 = 2016-03-23 21:50
I keep getting a syntax error when trying to apply this formula.
Now if I do this formula:
([Column1]-[Column2])
This returns me with 0,631944444445253 (15 hours) as expected. But does anyone know why this isnt working?