Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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!