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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.