Save the date! Join us on October 16 for our Product Ops launch event. Register here.
Feb 22, 2021 10:47 AM
I have this formula. If there is no date, the formula errors out. I need it to be the exact same formula but if the date field is blank, it still fills in all the other columns.
Here’s the formula: DATETIME_FORMAT({Date}, ‘YYYY-MM-DD’)&" “&Type&” || "&{Fellow}&{External Guest}
How would I change it to include blank-dates?
Feb 22, 2021 04:28 PM
This formula should work:
IF({Date}, DATETIME_FORMAT({Date}, ‘YYYY-MM-DD’) & " “)
& Type & ” || " & {Fellow} & {External Guest}
Feb 22, 2021 09:21 PM
Here’s the same formula with the styled quotes fixed:
IF({Date}, DATETIME_FORMAT({Date}, 'YYYY-MM-DD') & " ")
& Type & " || " & {Fellow} & {External Guest}
Feb 22, 2021 11:15 PM
Oops! Great catch, @Justin_Barrett! :grinning_face_with_big_eyes: