Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Oros
Resolver III
Resolver III

COUNT rows with filter

Hello,
 
How do you create a measure to COUNT many rows have zeros (in the VARIANCE column), 
but excluding the zero IF 
INVENTORY=0
and
COUNTED=0
 
In the example below, the measure should only have a count of 2 zeros instead of 3.    
 
Oros_0-1709328193184.png

Thanks

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

Assuming Inventory, Counted and Variance are measures that you have written, write this measure

Measure = countrows(filter(Values(Data[Product]),[Inventory]<>0&&[Counted]<>0&&[Valiance]=0))

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

11 REPLIES 11
Daniel29195
Super User
Super User

@Oros 

measure = 

var ds = 

filter ( 

tabl_name, 

tbl_name[inventory_col_name] +  tbl_name[counted_col_name] = 0 && tbl_name[variance_col_name] = 0 )

 

return countrows(ds) 

 

let me know if this helps .

 

 

If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠 

Hi @Daniel29195 ,

 

Thank you for your reply.  I am getting this error.

The syntax for ')' is incorrect. (DAX(var ds = filter (

Ashish_Mathur
Super User
Super User

Hi,

Assuming Inventory, Counted and Variance are measures that you have written, write this measure

Measure = countrows(filter(Values(Data[Product]),[Inventory]<>0&&[Counted]<>0&&[Valiance]=0))

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi @Ashish_Mathur ,

 

This works!  Thanks a lot!

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi @Ashish_Mathur ,

 

Thanks you for your quick reply.

 

The Inventory, Counted and Variance are all measures.  I noticed that your measure does not count the zeros correctly.  Is it because the Inventory and the Counted have blank values?

 

You are welcome.  If they have blanks, then why did you mention/show 0 in your original post.  Try this revised measure

Measure = countrows(filter(Values(Data[Product]),[Inventory]<>blank()&&[Counted]<>blank()&&[Variance]=0))


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
vanessafvg
Super User
Super User

MEASURE =
SWITCH (
TRUE(),
SUM ( table[inventory] ) = 0
&& SUM ( table[counted] ) = 0, 0,
SUM ( table[variance] ) = 0, COUNTROWS ( table ),
0
)





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Hi @vanessafvg ,

 

Thanks for your reply.

 

The Switch measure does not work at all.  Is it because the Inventory, Counted and Variance are all measures in which the Inventory and Counted measures have blank values?

hi, if you need comprehensive help you really need to provide adequate sample data in text form.  one can't posssibly  consider aall scenarios and you have given limited information.

 

 

the quality of the solutions is based on the information given, in data there are so many nuances so being explicit with the information will = a good solution.

 

also what makes up those measures, is there column data you can provide with the measure code,  please provide appropriate dummy data in text form if you can't provide the real thing.

 

thanks!





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Hi @vanessafvg,

 

I'll make it clear next time.  Thanks for the help. 🙂

 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.