Date Math Displaying as Hours Instead of Days

I’m trying to do exactly what is depicted here:

But instead I get this result:

There is no option to configure the display. Any hints on what I’m doing wrong?

The behaviour of this was changed recently. Subtracting one date from another now gives a duration. To get the result as an integer (days), you need to use either round() or trunc() in your formula.

eg. round(now-date)

3 Likes

Thank you!

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.