Forum Discussion
Anonymous_
3 years agoFrequent Visitor
IF-ELSE
My Input is like so: I need to define 'd', 'e' and 'f' under a singular category and let everything else remain the same. So, somthing like If input is 'a', 'b' and 'c', then no change else m...
- 3 years ago
AilleryO
Memorable Member
3 years agoHi,
Not 100% sure of your request but I'll give a try :
Test Column = IF ( [ColumName] IN {"d","e","f"}, "h" )
If you have many tests, you should consider using SWITCH function,
or if you have many many tests, even consider in making a correpondance table and use merge of queries.
Hope it helps, let us know