Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
As my filters are being used I want the bottom right hand Card to display how many values are in the left hand side table. My table value is a measure of one metric being divided by another.
Currently trying to use countrows but retunrs a number that is too large.
Q
Solved! Go to Solution.
Hi,
Try this measure
=countrows(filter(values('UnpivotGMA'[First Name]),[value divided by mark]>0))
If it does not help, then share the link from where i can download your PBI file.
Thanks for this formula. I did this and it did work but didnt count the rows properly.
Q
Hi @pickslides
Could you please share the expected result and the result you got from the formula?
Thanks. Please see, result should be 14, my measure in the table is value / mark
Hi,
Try this measure
=countrows(filter(values('UnpivotGMA'[First Name]),[value divided by mark]>0))
If it does not help, then share the link from where i can download your PBI file.
Hi @pickslides
You can create a measure using the following code:
Count = COUNTROWS(ALLSELECTED(SalesTeam[Company]))Instead of Company you can use your First name column.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.