Aug 14, 2021 05:37 AM
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?
Solved! Go to Solution.
Aug 14, 2021 06:05 AM
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.
Aug 14, 2021 06:05 AM
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.
Aug 14, 2021 06:40 AM
Superstar !! thank you !!