Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
I am trying to do a nested if statement to help me categorise some data in a calculated column
Formula for Calculated colunm just for reference
SUMX ( 'Summary', IF ( ISERROR ( VALUE ( 'Summary'[UPRN] ) ), 1 , BLANK() ) )
The idea is to create these groups based on a numerical value.
0-5 – Up To Five
6-10 Between Six and Ten
10-20 Between Ten and Twenty
30+ Thirty and above
Is an nested if statement the best way to achieve this. I initially tried grouping the data but had little success.
Solved! Go to Solution.
Hi @Anonymous
You can try SWITCH like below.
Column =
VAR x = 'Table'[Value]
RETURN
SWITCH(
TRUE(),
x >= 0 && x <= 5, "Up To Five",
x >= 6 && x <= 10, "Between Six and Ten",
x >= 10 && x <= 20, "Between Ten and Twenty",
"30+ Thirty and above"
)
Hi @Anonymous
You can try SWITCH like below.
Column =
VAR x = 'Table'[Value]
RETURN
SWITCH(
TRUE(),
x >= 0 && x <= 5, "Up To Five",
x >= 6 && x <= 10, "Between Six and Ten",
x >= 10 && x <= 20, "Between Ten and Twenty",
"30+ Thirty and above"
)
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 37 | |
| 29 | |
| 24 |