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.
Hi,
I'm new to Power BI and have a table with documents, users and timestamp.
I have created two count measures, distinct and just count. Now I would like to add a third measure that shows how many users have more than 10 rows for each document and show that in a table.
Not sure how to get this measure to work.
Thanks so much!
Solved! Go to Solution.
@Anonymous
Create a summarize table (not measure or column)
Table = SUMMARIZE(Sheet1, Sheet1[Document], Sheet1[User], "No of Rows", COUNT(Sheet1[Document]))
Then on this table write a count formula:
No of Users = CALCULATE(DISTINCTCOUNT('Table'[User]),'Table'[No of Rows]>2)
See attached file.
@themistoklis
No, I do not have that. Each row has the document name, user and a timestamp.
Might have to get the count of each document? But with a table visual I can easy show documents and the count of unique uesers and total rows for each document. Just would like to add another measure that shows how many unique users have a count of more than 10.
Thank!
@Anonymous
Create a summarize table (not measure or column)
Table = SUMMARIZE(Sheet1, Sheet1[Document], Sheet1[User], "No of Rows", COUNT(Sheet1[Document]))
Then on this table write a count formula:
No of Users = CALCULATE(DISTINCTCOUNT('Table'[User]),'Table'[No of Rows]>2)
See attached file.
Helo @Anonymous
Is there a field that shows the number of rows per document?
User | Count |
---|---|
98 | |
75 | |
69 | |
49 | |
26 |