Hello, I have this formula, but the result is always in hours. Where is the error?ThanksFabio IF(
Stato = "Campagna",
IF(
DATETIME_DIFF(NOW(), Chiusura, 'hours') > 48,
DATETIME_DIFF(NOW(), Chiusura, 'days') & " giorni",
IF(
DAT...
Thank you for your reply! In the meantime, I have found the solution (thanks ziotitanok!). The problem was that, due to how I wrote the formula, I was getting a negative result, and as a consequence, the various IF statements couldn't work. Now, I ha...