Forum Discussion
Filter out the blank values
- 4 years ago
Hi Anonymous ,
Please use the measure and filter visuals when the measure is not blank.
Measure = COUNTROWS ( FILTER ( VALUES ( 'Table'[Region] ), [Measure 1] <> BLANK () || [Measure 2] <> BLANK () || [Measure 3] <> BLANK () || [Measure 4] <> BLANK () ) )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello! This worked for me, but now when I run my visual with no filters, it exceeds resources. Any ideas?
Checking back in! I realized that the measure I created always had a return, so it was producing a ton of records with no value or use. Using this filter was helpful to get the right outcome, but it was unnecessary. I just had to add blank handling to my measures that were producing these blank records.