Forum Discussion
DAX
- 4 years ago
Hi AayWhy ,
Your code looks good to me. I created a calculated column in DAX with it and got the following result:
The only thing I noticed is that you had one parentheses too many.
So, this might be a wild guess: Could it be that you are trying to write the logic in M (Power Query) instead of DAX?
If so, Power Query uses the following syntax for if clauses:
if [ColumnA] = 1 then [ColumnA] else [ColumnB]
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Hi AayWhy ,
Your code looks good to me. I created a calculated column in DAX with it and got the following result:
The only thing I noticed is that you had one parentheses too many.
So, this might be a wild guess: Could it be that you are trying to write the logic in M (Power Query) instead of DAX?
If so, Power Query uses the following syntax for if clauses:
if [ColumnA] = 1 then [ColumnA] else [ColumnB]
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Hi Tomfox,
Thank you helping me figure this out, everything is working now. And your guess was right. Still trying to explore Power BI actually.
Thanks again!