The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I have a report where I want to count the number of row I display in my table. I am using COUNT but I happend to have a gap between the data the table display and the data in my dataset.
For exemple There is one particular value that I filter, it match with 12 row in the dataset but the table only show me 2 of this row (because there is no difference between those row)
So the count say 12 row, So my question is : Is there any way to count the number of row displayed ?
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous ,
Try something like
CountRows =
COUNTROWS (
SUMMARIZE (
ALLSELECTED ( 'Table' ),
Table[Column Name1],
Table[Column Name2],
)
)
Difficult to comment until you share sample data or what you are trying to acheive.
Regards,
Harsh Nathani
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!
Hi @Anonymous ,
Try something like
CountRows =
COUNTROWS (
SUMMARIZE (
ALLSELECTED ( 'Table' ),
Table[Column Name1],
Table[Column Name2],
)
)
Difficult to comment until you share sample data or what you are trying to acheive.
Regards,
Harsh Nathani
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |