Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon'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.
My visual is working fine with referencing the measure directly.
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.
Solved! Go to 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.
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.
Hi, @NelsonY ;
I create a simple file,
Vs
and if i change the measure.
Measure =
var _value=SUM(financials[Sales])
return IF(_value>0,"True",IF(_value<>BLANK(),"False"))
The final show:
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.
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 )
Is there any suggestion how I can eliminate those null?
@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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
85 | |
65 | |
51 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |