Forum Discussion
Anonymous
7 years agoNot applicable
IF logical Fucntion
Hi All, I am new to DAX coding. Could you please help me in understanding below function? Thanks . I am using a IF(OR( Column1 = "X","Y","A","B")) logic in excel to compare my column1 values....
- Anonymous7 years ago
Here is the syntax for IF with multiple values . Hope this helps to you.
Column = IF(Detais[Category] IN {"AA", "AB","BA"} , 1,2)ThanksRaj
Anonymous
7 years agoNot applicable
Here is the syntax for IF with multiple values . Hope this helps to you.
Column = IF(Detais[Category] IN {"AA", "AB","BA"} , 1,2)
Thanks
Raj
- Anonymous7 years agoNot applicable
Thanks for the reply Rajendran.
When to use a Measure or Conditional Coulumn?
Do u mind helping me to undersatnd when to use Calculate or Filter function?