I'd like to convert a weekday stored as a number 0-6 as text value of a weekday. I thought I'd be able to use the text function to convert like this:
Text(0, "dddd")
to get value Sunday. Instead, regardless of what I have as the first parameter, the value returned (I'm using a label) is Wednesday. Is there any other way to make this conversion besides an If statement? (If(weekday = 0, "Sunday, If(weekday = 1, "Monday", ...)