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" )
iamblue91
9 years agoFrequent Visitor
Thanks every one! I guess I was just overthinking it!