If today is friday and I am using UI-fields, why does the following not return “Friday”?
IF( DAY_OF_WEEK( TODAY() ) == “6”
,
“Friday”
,
“”
)
Page 1 / 1
Day_of_Week() returns a number. Compare to 6, not the character “6”.
IF ( DAY_OF_WEEK( TODAY() ) == 6, “Friday”, “”)
da! Thanks Mike.
Mike, you may also know the anser to this?
https://community.skuid.com/t/another-day-of-week?rfm=1&topic_submit=true
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.