March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have a table with names that are added periodically. I would like to count the number of times each name appears in the column and display the information in a table. Each time a name is added, that name should also be added to the table. I would appreciate ideas.
This is what the column looks like and next is what the resulting table should look like
Column
Table Display
Solved! Go to Solution.
Hi @vincetaylor
Use this measure
Measure = CALCULATE(COUNTROWS('Names'), FILTER('Names', 'Names'[Name] = SELECTEDVALUE('Names'[Name])))
Regards
Phil
Proud to be a Super User!
Hi,
Drag the name column to a Table visual and write this measure
Count = countrows(Data)
Data is the name of the Table.
Hope this helps.
Hi,
Drag the name column to a Table visual and write this measure
Count = countrows(Data)
Data is the name of the Table.
Hope this helps.
Hi @vincetaylor
Use this measure
Measure = CALCULATE(COUNTROWS('Names'), FILTER('Names', 'Names'[Name] = SELECTEDVALUE('Names'[Name])))
Regards
Phil
Proud to be a Super User!
User | Count |
---|---|
117 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
171 | |
117 | |
63 | |
57 | |
51 |