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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
leroy773
Helper II
Helper II

Table and multi row card to not show values

I have a dataset.  In the data set I have a field called labor hours.  This field can be blank.  When I graph the dataset everything looks good.  I also want to inlcude a table or multi row card for the same data to show more detail.  The problem I have is I want to sum the labor hours field, if the labor hours field is blank though then the multi row card is blank also.  If I do not summarize the labor hours field then it works fine.  But need to find a way to summarize the labor hours and still show the record in the multi row card even if labor hours are zero.  

1 ACCEPTED SOLUTION

I would either create a calculated column to replace blank values with 0 or possibly open the Query Editor and create a new Conditional Column doing the same (replace blanks with 0 and keep the original values if exists).

View solution in original post

3 REPLIES 3
GIO200011
Advocate I
Advocate I

In your measure add a conditional:

 

= IF(measure=""|| ISBLANK(measure), 0, measure)

dilumd
Impactful Individual
Impactful Individual

is it possiable to give some sample data?

 

I would either create a calculated column to replace blank values with 0 or possibly open the Query Editor and create a new Conditional Column doing the same (replace blanks with 0 and keep the original values if exists).

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors