Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi All,
I have two columns, one with fixed numbers between 0-100 [rating] and another new column [RatingGroup] where I want the values to be based on a group of the fixed numbers (e.g. 0 for 0-10, 1 for 10-20 etc.)
I've been trying to break it down to something simple first like this but it's not working:
RatingGroup = If(table[Rating] = "0-10", THEN table[RatingGroup] = "0")
Really appreciate some help!
Thanks!
Solved! Go to Solution.
RatingGroup =
SWITCH (
TRUE (),
Table[Rating] >= 0 && Table[Rating] <= 10, "0",
Table[Rating] > 10 && Table[Rating] <= 20, "1",
Table[Rating] > 20 && Table[Rating] <= 30, "2",
Table[Rating] > 30 && Table[Rating] <= 40, "3",
Table[Rating] > 40 && Table[Rating] <= 50, "4",
Table[Rating] > 50 && Table[Rating] <= 60, "5",
Table[Rating] > 60 && Table[Rating] <= 70, "6",
Table[Rating] > 70 && Table[Rating] <= 80, "7",
Table[Rating] > 80 && Table[Rating] <= 90, "8",
"9"
)This should work ![]()
RatingGroup =
SWITCH (
TRUE (),
Table[Rating] >= 0 && Table[Rating] <= 10, "0",
Table[Rating] > 10 && Table[Rating] <= 20, "1",
Table[Rating] > 20 && Table[Rating] <= 30, "2",
Table[Rating] > 30 && Table[Rating] <= 40, "3",
Table[Rating] > 40 && Table[Rating] <= 50, "4",
Table[Rating] > 50 && Table[Rating] <= 60, "5",
Table[Rating] > 60 && Table[Rating] <= 70, "6",
Table[Rating] > 70 && Table[Rating] <= 80, "7",
Table[Rating] > 80 && Table[Rating] <= 90, "8",
"9"
)This should work ![]()
You are a life savior thank you!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 60 | |
| 45 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 108 | |
| 107 | |
| 39 | |
| 30 | |
| 26 |