Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to 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).
In your measure add a conditional:
= IF(measure=""|| ISBLANK(measure), 0, measure)
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).
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.