Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello,
I have a pretty simple question. I am having some trouble trying to figure out what am I doing wrong here. I am providing the code here. I need a colmn that categorized the index. I am still learning power query so this is pretty silly.
If [grade] > [proficiency_index] then "Above Grade"
else if [grade] = [proficiency_index] then "At Grade"
else if [grade] < [proficiency_index] then "Below Grade"
The "grade" column in a decimal column and "proficiency_index" is a whole number column.
I am getting the following error:
Solved! Go to Solution.
Two issues, use lower case if and you have an extra else if:
if [grade] > [proficiency_index] then "Above Grade" else if [grade] = [proficiency_index] then "At Grade" else "Below Grade"
Two issues, use lower case if and you have an extra else if:
if [grade] > [proficiency_index] then "Above Grade" else if [grade] = [proficiency_index] then "At Grade" else "Below Grade"
It worked! Thank you
"Else" condition is missing in last "if" statement.
Or delete the last "if" statement as below.
If [grade] > [proficiency_index] then "Above Grade"
else if [grade] = [proficiency_index] then "At Grade"
else "Below Grade"
I believe it's missing the last else:
If [grade] > [proficiency_index] then "Above Grade"
else
if [grade] = [proficiency_index] then "At Grade"
else
if [grade] < [proficiency_index] then "Below Grade"
else ????
What do you mean by last else here? I am sorry I am not getting you. This is all my column would show:
It is still showing the same error,
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |