cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
dogburalHK82
Helper II
Helper II

calculation percentage with blank

Hi, 

 

When calculating points from given matrix, it gives non value (or blank) when the lookup value is blank. 

In fact, the value should be 0%,  not blank. 

 

example as below. 

 

To calculate score against Late % matrix, the score for Feb is not shown as the Late% calculated is zero, but recognised as blank.

dogburalHK82_0-1685928781781.png

File is uploaded here as well. 

https://filebin.net/6nyv2yhxq7f5hgdv  

4 REPLIES 4
dogburalHK82
Helper II
Helper II

@lbendlin would you be able to explain with the example? I do not quite understand. 

 

So far,  i tried below

 

COALESCE dax

or 

_early =
var _blank = calculate(countA(Table1[Item Number]), filter(Table1, (Table1[days diff])<(-early[early Value])))
return
if(_blank = blank(), 0, _blank)
 
but then they shows all months.. and score table only still shows Jan.
dogburalHK82_1-1686035892283.png

 


 

 

Maybe the old " 0+ " trick is enough.  See attached.

thanks @lbendlin 

I did not know this trick. 

 

However, i still do see unwanted months in the table. how can I get rid of those months? 

 

When I tried below, it seems working. 

avg_early = averagex(Summarize('Table1', 'Table1'[Order Date]), calculate([_early]))
dogburalHK82_1-1686095793125.png

 

 

 

dogburalHK82_0-1686095319990.png

but not working with this

avg_late = averagex(Summarize('Table1', 'Table1'[Order Date]), calculate([score_late]))

dogburalHK82_2-1686095860952.png

 

lbendlin
Super User
Super User

To report on things that are not there you need to use disconnected tables and/or crossjoins

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors