Forum Discussion
iamblue91
9 years agoFrequent Visitor
[Beginner Question] Calculated column?
I'm tyring to create a calculated column that will generate a yes / no. (Not actual data or names used) The column "Permission Issued (code)" has options A, B, C, No, n/a. I want the new col...
- Anonymous9 years ago
A switch statement might also be worth considering:
= SWITCH( [Permission Issued (code)], "No","No", "n/a","n/a", "Yes" )
paulag
9 years agoAdvocate I
create a calcualted column with an IF statement
=IF([Permission Issued (code)]="No","No", IF([Permission Issued (code)]="n/a","n/a","Yes")
Anonymous
9 years agoNot applicable
A switch statement might also be worth considering:
= SWITCH( [Permission Issued (code)], "No","No", "n/a","n/a", "Yes" )
- paulag9 years agoAdvocate I
Switch is probably easier than the IF statement