Hello, I have this formula, but the result is always in hours. Where is the error?
Thanks
Fabio
IF(
Stato = "Campagna",
IF(
DATETIME_DIFF(NOW(), Chiusura, 'hours') > 48,
DATETIME_DIFF(NOW(), Chiusura, 'days') & " giorni",
IF(
DATETIME_DIFF(NOW(), Chiusura, 'hours') < 48,
DATETIME_DIFF(NOW(), Chiusura, 'hours') & " ore",
IF(
DATETIME_DIFF(NOW(), Chiusura, 'hours') < 8,
DATETIME_DIFF(NOW(), Chiusura, 'minutes') & " minuti"
)
)
)
)