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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
NelsonY
Regular Visitor

Mysterious empty row in Matrix/Table

My visual is working fine with referencing the measure directly.

 

NelsonY_1-1664514485148.png

 

It produce a blank line when I branching from it.  I need help to get rid of the blank line from the branched measure.  I don't want to use the "is not blank" filter on visual to remove it as it's used in multiple visuals.

 

NelsonY_4-1664514761328.png

 

 

 

1 ACCEPTED SOLUTION

Hi yalanwu,

 

Thanks for your advise.  It doesn't help.  However, I sort of finding the issue.  The blank line disappeared after I remove all fields from the visual and putting them back.  This could be a bug or some corruption with my pbix file.

View solution in original post

10 REPLIES 10
v-yalanwu-msft
Community Support
Community Support

Hi, @NelsonY ;

Very happy to hear that your problem has been solved, can you kindly mark the reply as a solution to close the case?


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

v-yalanwu-msft
Community Support
Community Support

Hi, @NelsonY ;

I create a simple file,

vyalanwumsft_2-1664776540370.png

Vs

vyalanwumsft_3-1664776558255.png

and if i change the measure.

Measure = 
var _value=SUM(financials[Sales])
return IF(_value>0,"True",IF(_value<>BLANK(),"False"))

The final show:

vyalanwumsft_4-1664776719880.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi yalanwu,

 

Thanks for your advise.  It doesn't help.  However, I sort of finding the issue.  The blank line disappeared after I remove all fields from the visual and putting them back.  This could be a bug or some corruption with my pbix file.

tamerj1
Super User
Super User

Hi @NelsonY 
The engine creates this line automatically to resolve the measure's blank value even if it does not actually exist. The reason is that the comparison operator forces all values including BLANK similar to adding 0 for example. You may try

 

t1 =
VAR CurrentValue = [Last 70 Avg Max Host Cpu Usage]
RETURN
    IF ( NOT ISBLANK ( CurrentValue ), CurrentValue > 0.5 )

 

 

No. Still not working.

The result is the same.  I'm not convince it's dimension data issue.  If you look at my first screenshot, the hostname is in accending order and there's no null value with the measure.  Why should I getting null when I ust doing a comparsion against a constant value?

Hi @NelsonY 
It is not a dimension data issue. I didn't say that. If my solution did not work please try 

t1 =
IF ( NOT ISEMPTY ( 'Table' ), [Last 70 Avg Max Host Cpu Usage] > 0.5 )
NelsonY
Regular Visitor

Is there any suggestion how I can eliminate those null?

@NelsonY , If Dimension does not have all values, try to fix the Dimension.

You can use visual level of page level filter and remove blank values

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
amitchandak
Super User
Super User

@NelsonY , The empty row can come,  In case you have fact and dimension use in visual.

 

When the dimension is missing values that are there in fact. Or fact has null in the join column

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

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
Top Kudoed Authors