Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hey there!
I'm trying to create a custom column using nested ifs, but i'm having a syntax error.
The idea is simple. I think some parenthesis are missing.
Thanks for the help!
Solved! Go to Solution.
Looks like you are mixing DAX and M syntax.
M syntax should look like this:
=if [Nota] <=6 then "Detrator" else if [Nota]>6 and [Nota]<=8 then "Neutro" else if [Nota]>8 then "Promotor" else "error"
DAX would look like:
Column = IF([Nota]<=6,"Detrator",IF([Nota]>6 && [Nota]<=8,"Neutro","Promotor"))
Looks like you are mixing DAX and M syntax.
M syntax should look like this:
=if [Nota] <=6 then "Detrator" else if [Nota]>6 and [Nota]<=8 then "Neutro" else if [Nota]>8 then "Promotor" else "error"
DAX would look like:
Column = IF([Nota]<=6,"Detrator",IF([Nota]>6 && [Nota]<=8,"Neutro","Promotor"))
Greg,
Thanks a lot!
I'll try your solution asap, but it looks correctly, I actually mixed both languages.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
26 |
User | Count |
---|---|
95 | |
50 | |
43 | |
40 | |
35 |