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.
Dec 03, 2023 08:28 PM
Hi There,
Seeking some help writing a formula to show the minimum of two date fields in a specified format. I have it working but showing without a forward slash.
Formula used so far is =
Solved! Go to Solution.
Dec 03, 2023 08:56 PM
Hello @Sam_Giovenco1
Use this one if there are maximum number of fields is only 2 fields.
IF(IS_BEFORE({Field 1}, {Field 2}), {Field 1}, {Field 2})
Then change date options respectively, if needed.
Dec 03, 2023 08:56 PM
Hello @Sam_Giovenco1
Use this one if there are maximum number of fields is only 2 fields.
IF(IS_BEFORE({Field 1}, {Field 2}), {Field 1}, {Field 2})
Then change date options respectively, if needed.
Dec 03, 2023 10:06 PM
Thanks @dilipborad that worked perfectly 👍