Hello There,
I am working on color coding measure by comparing Actual Vs Target.
If Actual is blank - I don't want color
if Target is blank - I don't want color
if Actual & Target both are blank - I don't want color
This can be achive by mentioning Actual <> blank() && Target <> blank()
but I have some values in target or in actual as 0 and I want to comapre them with respective target to give color but after blank condition it is showing no color.
I believe it considering 0 as Blank
can someone help on how to fixed this issues.
Solved! Go to Solution.
Hi,
Please try somethnig like below.
if( Actual == blank() && Target == blank(), blank(), color condition)
by using two equal signs, ==, it only catches blank, and it does not catch zero.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
You're absolutely right, if you do a test like :
[Value]=0 or [Value]=BLANK() Power BI consider 0 and blank as the same.
To differentiate them you should use :
[Value]==0 or [Value]==BLANK() or ISBLANK( [Value])
all of them making a difference between null (blank) and 0.
And you can use NOT to make your test :
NOT ISBLANK( [Actual])
Hope it helps, let us know...
Hi,
Please try somethnig like below.
if( Actual == blank() && Target == blank(), blank(), color condition)
by using two equal signs, ==, it only catches blank, and it does not catch zero.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Thanks Worked Perfectly 🙂
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
106 | |
60 | |
45 | |
27 | |
24 |
User | Count |
---|---|
129 | |
94 | |
74 | |
43 | |
38 |