Change an Enum state using an Action

Rookie question but can’t find the answer. I have an Enum column with 2 states, “JR” and “SR”. I’d like to create an action that simply changes the state from JR to SR or SR to JR but can’t figure out how to toggle/change Enum values with actions.

I’m assuming this is dead simple but, hey, these are the kind of questions you get when you make an app for no-coders

Solved Solved
0 2 853
1 ACCEPTED SOLUTION


And the expression that you can’t quite see in there is:

IFS(
[enum] = "JR" , "SR" ,
[enum] = "SR" , "JR"
)

replace “[enum]” with your actual column name.


View solution in original post

2 REPLIES 2


And the expression that you can’t quite see in there is:

IFS(
[enum] = "JR" , "SR" ,
[enum] = "SR" , "JR"
)

replace “[enum]” with your actual column name.


@Marc_Dillon, Extremely helpful. Thanks for the quick turnaround!

Top Labels in this Space