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
I have list of ages (18-60) and I want to group them like (by 10)
18 - 28
29 - 39
40 - 50
51 - 60
I want to use PowerBI not Power Query. I tried to create Bin or List but I did not get it right. Any idea please. Thank you so much
Solved! Go to Solution.
@lastnn30
Create a table as follows names Band Table
Create a measure count the ages:
Count Age =
VAR __AgeBandMin = SELECTEDVALUE('Band Table'[Min] )
VAR __AgeBandMax = SELECTEDVALUE('Band Table'[Max] )
return
CALCULATE(
COUNT(Table2[Age]),
Table2[Age] >= __AgeBandMin,
Table2[Age] <= __AgeBandMax
)
Result
The file is attached below my signature
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@lastnn30
Create a table as follows names Band Table
Create a measure count the ages:
Count Age =
VAR __AgeBandMin = SELECTEDVALUE('Band Table'[Min] )
VAR __AgeBandMax = SELECTEDVALUE('Band Table'[Max] )
return
CALCULATE(
COUNT(Table2[Age]),
Table2[Age] >= __AgeBandMin,
Table2[Age] <= __AgeBandMax
)
Result
The file is attached below my signature
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thank you so much indeed.
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 |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |