The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Feb 11, 2020 02:08 PM
Feb 11, 2020 02:13 PM
It’s missing an opening parenthesis, and it’s got an an unparsed date string.
You need to use DATETIME_PARSE()
to parse the string into a DateTime object to compare with your Date field.
Also, you may want to use the IS_AFTER()
date comparison function.
I think this should be your equivalent formula:
IF(
IS_AFTER(
{purchase-date},
DATETIME_PARSE("02/01/2020", 'MM/DD/YYYY')
),
"Yes",
"No"
)
Feb 11, 2020 02:13 PM
It’s missing an opening parenthesis, and it’s got an an unparsed date string.
You need to use DATETIME_PARSE()
to parse the string into a DateTime object to compare with your Date field.
Also, you may want to use the IS_AFTER()
date comparison function.
I think this should be your equivalent formula:
IF(
IS_AFTER(
{purchase-date},
DATETIME_PARSE("02/01/2020", 'MM/DD/YYYY')
),
"Yes",
"No"
)
Feb 11, 2020 02:24 PM
Thanks you very much
Feb 11, 2020 02:25 PM
You’re welcome :slightly_smiling_face: