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.