Forum Discussion
Anonymous
1 year agoNot applicable
Using Switch
I am trying to add a new measure to a table and using data from another column to standardize some fields. This is what I have an keep getting errors Status = SWITCH(FRAM[elgibility},'Free', "F...
- 1 year ago
Try this
Status =
SWITCH(
FRAM[eligibility],
"Free", "Free",
"Reduced", "Reduced",
"Paid", "Paid",
"Other" -- optional default value
)
Chanty4u
1 year agoFrequent Visitor
Try this
Status =
SWITCH(
FRAM[eligibility],
"Free", "Free",
"Reduced", "Reduced",
"Paid", "Paid",
"Other" -- optional default value
)