Hi everyone!
I have a simple DATETIME_DIFF field that returns the amount of difference in dates just fine.
I however use it to count the days of an event and would like it to return the amount of days an event takes place, which then means I would need a DATEADD +1.
For some reason I just can’t get it to work properly. It’s probably as simple as a , but still.
This is what I’m trying to build from
IF(
{End Date}=BLANK(),
'1 day', IF(
{End Date},DATETIME_DIFF({End Date}, {Start Date}, 'days') & ' dagar '))
I am beyond greatful for any and all help I can get.