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 nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello,
I'm having trouble figuring out how to create a custom column to categorize Age.
In the picture below I have employees and their age, I would like the custom column to categorize into:
<25
25 - 30
31 - 35
36 - 40
41 - 45
46 - 50
51 - 55
55 - 60
61 - 65
66+
Is this possible in Query Editor? I tried a conditional column but couldnt get it to work out so my next try would be Custom Column, but I'm not even sure if that would work. Hoping for someone to help here 😃
Thank you
Solved! Go to Solution.
Hi,
You can do it in query editor using conditinal columns.
Here's the M-code that got generated for a sample dataset.
You can change it to suit your age group requirements.
= Table.AddColumn(#"Changed Type", "Age Group", each if [Age] <= 10 then "1 - 10" else if [Age] <= 20 then "11 - 20" else if [Age] <= 30 then "21 - 30" else "Other" )
Please accept this as a solution if it satisfies the requirement. Appreciate your Kudos. 🙂
Thanks.
Hi,
You can do it in query editor using conditinal columns.
Here's the M-code that got generated for a sample dataset.
You can change it to suit your age group requirements.
= Table.AddColumn(#"Changed Type", "Age Group", each if [Age] <= 10 then "1 - 10" else if [Age] <= 20 then "11 - 20" else if [Age] <= 30 then "21 - 30" else "Other" )
Please accept this as a solution if it satisfies the requirement. Appreciate your Kudos. 🙂
Thanks.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 19 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 53 | |
| 47 | |
| 40 | |
| 38 |