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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
ArashZ
Helper I
Helper I

Count of users in the organization

Hi,

I have a table like below:

UserOrganization
aA
bA
cB
dB
eB
fC
gC
hC
iC
jC
kD
lE
mE
nE
oE
pF
qF
rF
SF

 

I want to create a pie chart to count the

Number of organizations with 1 user

Number of organizations with 2-3 user

Number of organizations with more than 3 users, like below:

ArashZ_0-1629217920122.png

 

 

4 REPLIES 4
Anonymous
Not applicable

Hi @ArashZ 

 

1)Go to Power Query editor and right click on the organization column and click 'Group By' as shown below:

 

Aditya_Meshram_1-1629219025317.png

 

 

2) Choose these settings and click OK.

Aditya_Meshram_2-1629219122404.png

 

3) You'll get a table like this:

Aditya_Meshram_3-1629219179002.png

 

4) Now click on close and apply:

 

Aditya_Meshram_5-1629219250446.png

 

5) Now create a calculated column like this using this DAX.

 

Count Bucket = 
SWITCH(
    TRUE(),
    'Table'[Count] > 3,"Number of organizations with more than 3 users",
    'Table'[Count] >1,"Number of organizations with 2-3 users",
    "Number of organizations with 1 user"
)

 

Aditya_Meshram_0-1629221468566.png

 

Set the Summarization of Count to "Don't summarize".

6) Now plot the values in this way :

Aditya_Meshram_7-1629220780971.png

 

This is the required solution as requested.

 

Link to this .pbix file :

https://nicesoftwaresolutions1-my.sharepoint.com/:u:/g/personal/ameshram_nicesoftwaresolutions_com/E...

 

Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!

 

Regards,

Aditya

Hi @Anonymous Thanks. But I don't want to create a physical table. Is there a way to calculate a table on the fly for this?

@AnonymousHi,

Thanks for the answer. However, would it be possible to create a measure or calculated column, instead of using power Query? I don't have access to power query and prefer using measures or columns.

 

Anonymous
Not applicable

To the best of my knowledge, I don't think it's possible to do so through measures or calculated columns. However, if you say that your problem is not having access to Power Query, you can bypass that by creating a summary table by clicking on New Table and using this DAX. 

Summary table = 
SUMMARIZE(
    'Table',
    'Table'[Organization],
    "Count",
    COUNT('Table'[User])
)

Aditya_Meshram_0-1629228161308.png

In this way you can get the table obtained in step 3 of my original solution without having to use Power Query. Then you can proceed like we did in the original solution.

 

Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!

 

Regards,

Aditya

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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