Forum Discussion
Group By Column Type
I have a table with multiple columns. One Column is called Lic Type and another is called User.
There are six different Lic Types and multiple users can be in each Lic Type.
I want to group my report by Lic Type and after each Lic Type I want a count of the number of users from the User column for each different Lic type.
Any ideas.
Thanks.
Something like this?
Number of users = COUNT(SampleData[User])- Anonymous3 years ago
Hi PowerBrowse ,
I think you can try ALLEXCEPT() function to create a measure or a calculated column.
Total Group by Lic Type = CALCULATE ( DISTINCTCOUNT ( 'Table'[User] ), ALLEXCEPT ( 'Table', 'Table'[Lic Type] ) )Result is as below.
OR
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
7 Replies
- bolfriSolution Sage
Number of users = COUNT(Table[User])
- PowerBrowseHelper I
Thanks for the reply but I think you misunderstood.
I need the Number of Users for each Lic Type in the form. Each user has a Lic Type and there are 6 different Lic Types in the table.
- bolfriSolution Sage
So.... I still don't understand. Can you post here sample rows with the data you have an what do you expect from that data? It's very hard to understand what do you mean only by description.
- PowerBrowseHelper I
Both answers were of help.
Thanks.