- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Table VALUES(Table) with count of Occurence of each item.
Hi
I have created a table with Values on a column of text values which are the agent statuses when logging in and out.
Would like to create a count of how many times each status occurred.
Statuses = VALUES('Agent Status Summary'[Status])
This creates the table and returns as expect the unique strings.
But how do I get the count of each occurence of each value in the next column.
Currently it returns the count of all.
I have tried ifferent variants of formulas like
Count = CALCULATE(COUNTROWS('Agent Status Summary'),ALLEXCEPT('Agent Status Summary','Agent Status Summary'[Status]))
Count = COUNTX(VALUES('Agent Status Summary'), [Status])
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @HankScorpio2 ,
VALUES returns the distinct values of a referenced column in a calculated table but doesn't aggregate. Try this instead:
Summary =
ADDCOLUMNS (
SUMMARIZE ( Data, Category[Category] ),
"Count", CALCULATE ( COUNTROWS ( Data ) )
)
Dane Belarmino | Microsoft MVP | Proud to be a Super User!
Did I answer your question? Mark my post as a solution!
"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@danextian Thanks for your contribution on this thread.
Hi @HankScorpio2 ,
You can follow the steps belwo to get it:
1. Create a measure as below:
Count =
VAR _status =
SELECTEDVALUE ( 'Agent Status Summary'[Status] )
RETURN
COUNTROWS (
FILTER ( 'Agent Status Summary', 'Agent Status Summary'[Status] = _status )
)
2. Create a table visual: drag the field 'Agent Status Summary'[Status] and the above new measure onto the visual
Best Regards
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@danextian Thanks for your contribution on this thread.
Hi @HankScorpio2 ,
You can follow the steps belwo to get it:
1. Create a measure as below:
Count =
VAR _status =
SELECTEDVALUE ( 'Agent Status Summary'[Status] )
RETURN
COUNTROWS (
FILTER ( 'Agent Status Summary', 'Agent Status Summary'[Status] = _status )
)
2. Create a table visual: drag the field 'Agent Status Summary'[Status] and the above new measure onto the visual
Best Regards
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @HankScorpio2 ,
VALUES returns the distinct values of a referenced column in a calculated table but doesn't aggregate. Try this instead:
Summary =
ADDCOLUMNS (
SUMMARIZE ( Data, Category[Category] ),
"Count", CALCULATE ( COUNTROWS ( Data ) )
)
Dane Belarmino | Microsoft MVP | Proud to be a Super User!
Did I answer your question? Mark my post as a solution!
"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi what does Data represent in your model, a measure?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

SUMMARIZE is a table function so it can be applied to a physical or virtual table only.
Dane Belarmino | Microsoft MVP | Proud to be a Super User!
Did I answer your question? Mark my post as a solution!
"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
08-02-2024 11:49 AM | |||
05-07-2024 02:26 AM | |||
06-14-2024 04:14 AM | |||
11-21-2023 07:05 PM | |||
02-12-2024 04:52 AM |
User | Count |
---|---|
122 | |
104 | |
83 | |
52 | |
45 |