Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
sb_powerbi
Helper II
Helper II

Calculate users Count on Age Distribution (18-30,31-45) on X axis

We got requirement to show the users count with age distributions. For example we have to show the users count by age between breakups . X axis values should be : 18-35 , 36-50,51-64, 65>above. Y axis : users count. Please suggest us how to calculate users count based on age breakups ?

 

Age Distribution.jpg

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@sb_powerbi,

 

Here is one way for your reference.

1) add a caculated column AgeGroup

AgeGroup =
IF (
    Persons[Age] < 18,
    "1) <18",
    IF (
        Persons[Age] <= 25,
        "2) 18-25",
        IF ( Persons[Age] <= 50, "3) 26-50", "4) >50" )
    )
)

2) add a measure UsersCount

UsersCount =
COUNTX ( Persons, 1 )

 

Capture.PNG

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@sb_powerbi,

 

Here is one way for your reference.

1) add a caculated column AgeGroup

AgeGroup =
IF (
    Persons[Age] < 18,
    "1) <18",
    IF (
        Persons[Age] <= 25,
        "2) 18-25",
        IF ( Persons[Age] <= 50, "3) 26-50", "4) >50" )
    )
)

2) add a measure UsersCount

UsersCount =
COUNTX ( Persons, 1 )

 

Capture.PNG

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks Sam,

 

I have found one more solutoin, We can able add conditions by using Conditional Column feature in query editor.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors