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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Shivagange
Frequent Visitor

Returns blank even though data is not there in that particular filter combination

Hi,

 

I have created a report that contain reviews data of Social Media.Here 3 sentiments are there (+ve review,-ve Review,Neutral Review) based on social media we are going to filter the reviews rating.For HolidayIQ there is no neutral reviews but in report it's showing blank instead of 0.I have tried many DAX commands but i didnt get any proper solutions for that.

 

Untitled.png

Would anyone have an idea how to do this?

 

Thanks in advance!

1 ACCEPTED SOLUTION

Hi@vcastello,

 

Thanks for your reply. I got the solution for this now its working fine.

ReeviewBlank = COUNTROWS ( FILTER ( review, TRUE() ) ) + 0

 

 

View solution in original post

2 REPLIES 2
vcastello
Resolver III
Resolver III

Hi @Shivagange

 

It returns (Blank), just because there is no data that fits the filter (Holiday IQ and Neutral).

 

You colud try something like this (assuming that your measure that counts the reviews is called [Measure M] ) ...

IF(ISBLANK([Measure M]), 0, [Measure M])


Hi@vcastello,

 

Thanks for your reply. I got the solution for this now its working fine.

ReeviewBlank = COUNTROWS ( FILTER ( review, TRUE() ) ) + 0

 

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors