Forum Discussion

iamblue91's avatar
iamblue91
Frequent Visitor
9 years ago
Solved

[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...
  • Anonymous's avatar
    Anonymous
    9 years ago

    A switch statement might also be worth considering:

     

    = SWITCH(
    	[Permission Issued (code)],
    	"No","No",
    	"n/a","n/a",
    	"Yes"
    )