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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have extracted data from AD, computer name and managed by. I can now create a table showing each user and the count of computers they have. What I'm trying to do next is be able to show how many users have one computer, how many have 2 etc. so I'm trying to count my count!
Suggestions?
Solved! Go to Solution.
Hi @robofski,
Made a sample table with person/computer and did a new table with SUMMARIZE:
Table = SUMMARIZE(Table1,Table1[Person],"#Computer",count(Table1[Computer]))
Then just add the #Computer to your table twice with witout summarize and the other making a count and you will get the result below.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @robofski,
Made a sample table with person/computer and did a new table with SUMMARIZE:
Table = SUMMARIZE(Table1,Table1[Person],"#Computer",count(Table1[Computer]))
Then just add the #Computer to your table twice with witout summarize and the other making a count and you will get the result below.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks @MFelix I thought SUMMARIZE was going to be the answer but couldn't get my head around how!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.