Hi all,
Is there a way to run Run the first Datetime formula and if an error automatically run the second date time formula to pull the information in?
- DATETIME_FORMAT({Date Paid}, ‘MMMM-YYYY’)
- DATETIME_FORMAT({Order Date}, ‘MMMM-YYYY’))
Hi all,
Is there a way to run Run the first Datetime formula and if an error automatically run the second date time formula to pull the information in?
If all you need to decide between both is to check if the {Date Paid}
data is present, this
DATETIME_FORMAT(IF({Date Paid}, {Date Paid}, {Order Date}), 'MMMM-YYYY')
will do the trick. More generally speaking, if you also want to filter out invalid inputs (not really a scenario handling a date type field, but not all fields are created equal), you can check the result of your first transformation by wrapping it in ISERROR()
, then repeating it in the else branch.
If all you need to decide between both is to check if the {Date Paid}
data is present, this
DATETIME_FORMAT(IF({Date Paid}, {Date Paid}, {Order Date}), 'MMMM-YYYY')
will do the trick. More generally speaking, if you also want to filter out invalid inputs (not really a scenario handling a date type field, but not all fields are created equal), you can check the result of your first transformation by wrapping it in ISERROR()
, then repeating it in the else branch.
Superstar !! thank you !!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.