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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Show items with no data as 0 instead of blanks

Hi All, 

 

I've created a mesure to calculate a number of employees that left the company: 

 

 

HC-Leavers = VAR vleavers =
  SUMMARIZE ( FILTER ( 'xa BuildUp To Gross',
     'xa BuildUp To Gross'[Administrative End Date] >= MIN ( Calendar[Date] )
        && ( 'xa BuildUp To Gross'[Administrative End Date]<= MAX ( Calendar[Date] ) )
        ),'xa BuildUp To Gross'[Payroll nb]
  )
RETURN
COUNTROWS ( vleavers)

 

The issue is that when I apply filter/slicer some of the result is no data and the visual/graph that I'm using (Card) shows as the result as (blank), and i would like to show as zero. 

 

Anyone have any clue how can i proceed ? 

1 ACCEPTED SOLUTION
Floriankx
Solution Sage
Solution Sage

One way, maybe not the most elegant one:

 

HC-Leavers_0:=IF(ISBLANK(HC-Leavers),0,HC-Leavers).

 

Best regards.

View solution in original post

3 REPLIES 3
Floriankx
Solution Sage
Solution Sage

One way, maybe not the most elegant one:

 

HC-Leavers_0:=IF(ISBLANK(HC-Leavers),0,HC-Leavers).

 

Best regards.

Anonymous
Not applicable

Thanks a lot @Floriankx  it worked properly. 

 

I've hided the calc, and displayed this new measure as the main one. 

 

Thanks ! 

Ashish_Mathur
Super User
Super User

Hi,

 

Could you share a dataset and show the expected result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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