A Select/ Case statement is use when referencing one field. In your formula, you check more than one field. If you don’t like the If-Then-Else statement, try using IIF() or Switch().
Example of Case logic:
Select {table.field}
Case “A”:
“Show this”
Case “B”:
“Show that”
Default:
“Show nothing”
;