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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

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

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

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
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! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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

Users online (153)