Jul 06, 2019 05:51 PM
Trying to set 1st field as a formula with IF statement.
I currently have:
Bill & " - " & DATETIME_FORMAT({Due Date}, “ll”)
I have another table for bills paid on irregular date (non due date). Without the Due Date being filled in I get an Error in the formula.
I’d like to have the formula show IF Due Date Empty, date paid
Thank you.
Solved! Go to Solution.
Jul 06, 2019 09:35 PM
I think the formula you want is:
Bill & " - " & DATETIME_FORMAT(IF({Due Date}, {Due Date}, {Date Paid}), "ll")
Jul 06, 2019 08:48 PM
If({Due Date}="",{Date Paid})
Jul 06, 2019 09:34 PM
Thanks @Steve_Vo, I am getting an error message when I add this formula to my current one. Suggestions?
Bill & " - " & DATETIME_FORMAT({Due Date}, “ll”), IF({Due Date}="",{Date Paid})
Jul 06, 2019 09:35 PM
I think the formula you want is:
Bill & " - " & DATETIME_FORMAT(IF({Due Date}, {Due Date}, {Date Paid}), "ll")
Jul 06, 2019 09:38 PM
Perfect, thank you @Justin_Barrett