Aug 04, 2017 08:38 PM
Trying to put together a formula that will return a blank result or a date in a specific format and timezone.
This works:
DATETIME_FORMAT(SET_TIMEZONE({Broadcast Date/Time}, ‘Australia/Sydney’), ‘DD/MM/YYYY HH:mm’)
And so does this:
IF({Broadcast Date/Time} = BLANK(), “”,{Broadcast Date/Time})
But not this:
IF({Broadcast Date/Time} = BLANK(), “”, DATETIME_FORMAT(SET_TIMEZONE({Broadcast Date/Time}, ‘Australia/Sydney’), 'DD/MM/YYYY HH:mm’))
I’m missing something here, hopefully obvious. Really not sure what it is.
Aug 05, 2017 12:59 AM
How can you be sure this works? :winking_face:
Blank() can be tricky. Does the following work?
IF({Broadcast Date/Time} = BLANK(), “BlankTest”,{Broadcast Date/Time})
Aug 05, 2017 05:51 AM
Thanks @Tuur, I can confirm that your “BlankTest” formula does work. I just need to get the format of the date working.
Aug 05, 2017 06:03 AM
Ok, discovery. It appears than when I copied in the formula, it carried the following characters in italic: ’ and ". When I replaced these characters unitalicized, all was fixed and the formula worked.
Aug 05, 2017 09:17 AM
:thumbs_up:
8.7.6.5.4.3.2.1
Aug 05, 2017 05:37 PM
Works perfectly well on my system…