Hello!
Is these a way to reverse this? To show 2023/Q1 instead of Q1/2023.
IF({Your Date Field},
“Q” & DATETIME_FORMAT({Your Date Field},‘Q/YYYY’)
)
Hello!
Is these a way to reverse this? To show 2023/Q1 instead of Q1/2023.
IF({Your Date Field},
“Q” & DATETIME_FORMAT({Your Date Field},‘Q/YYYY’)
)
Hey @Scott_Gardner1!
This should do it:
IF(
{Your Date Field},
DATETIME_FORMAT(
{Your Date Field},
"YYYY"
)
& "/Q" &
DATETIME_FORMAT(
{Your Date Field},
"Q"
)
)
Perfect, thank you Ben!!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.