Forum Discussion
Anonymous
3 years agoNot applicable
Validating Combination between two columns
Hi there, dumb question... I have a table with columns "Class" and "Tag". I'd like to get a measure (or a calculated column) called validation... the validation would be: if 'Class' = Vessel and 'Ta...
- 3 years ago
Hello Anonymous ,
use the following as Calculated Column
Validation = IF('Table'[Class] = "Vessel" && 'Table'[Tag] = "V",1,0)If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Idrissshatila
3 years agoSuper User
Hello Anonymous ,
use the following as Calculated Column
Validation = IF('Table'[Class] = "Vessel" && 'Table'[Tag] = "V",1,0)
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
- Anonymous3 years agoNot applicable
Idrissshatila Solution worked perfectly. Thanks!