Forum Discussion
Arioli_Chezhian
Helper II
3 years ago"IF" condition based - Calculated column
Hi Team, I have a scenario to achieve in DAX. The mentioned is the requirement. The Training "T1" should be mapped only to Role 1. If other Role contains the T1 value it should be "Null". Oth...
- 3 years ago
Add a new custom column
Required Output = IF(Training[Name] <> "Role 1" && Training[Trainings] = "T1", BLANK(), Training[Trainings])Thanks
Joe
If this post helps, then please Accept it as the solution
JoeBarry
Solution Sage
3 years ago
Add a new custom column
Required Output = IF(Training[Name] <> "Role 1" && Training[Trainings] = "T1", BLANK(), Training[Trainings])
Thanks
Joe
If this post helps, then please Accept it as the solution