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
Malsha
Helper I
Helper I

matrix visual columns issue

Hi,
I have created a matrix as below.

Malsha_0-1698148605240.png


I'm using the below measure to get the values for selected dates.

Total Worked Hours =
Var cal =
CALCULATE(
    SUM('timesheet_data'[Hours Worked]),
    'timesheet_data'[Timesheet Job Role Name] IN {"Morning Cleaning", "Janitors", "Window Cleaner", "Duty & Morning", "Supervisor"},
    'timesheet_data'[duration] <> "S",
    'timesheet_data'[duration] <> "H"
)

return
cal

I need to show '0.00' for the blank values which means SUM('timesheet_data'[Hours Worked]) = 0. for that I modified the above measure as below. But it gives 0.00 for all the values without giving correct answers. what's the solution for this and what's the error in my measure.
Any help most appreciated. Many thanks.
Total Worked Hours =
var cal =
CALCULATE(
    SUM('timesheet_data'[Hours Worked]),
    'timesheet_data'[Timesheet Job Role Name] IN {"Morning Cleaning", "Janitors", "Window Cleaner", "Duty & Morning", "Supervisor"},
    'timesheet_data'[duration] <> "S",
    'timesheet_data'[duration] <> "H"
)

var ans = COALESCE(cal, 0.00)

return
ans
Malsha_1-1698149103750.png

 



3 REPLIES 3
AmiraBedh
Super User
Super User

Can you try the following : 

 

Total Worked Hours =
var cal =
CALCULATE(
    SUM('timesheet_data'[Hours Worked]),
    'timesheet_data'[Timesheet Job Role Name] IN {"Morning Cleaning", "Janitors", "Window Cleaner", "Duty & Morning", "Supervisor"},
    'timesheet_data'[duration] <> "S",
    'timesheet_data'[duration] <> "H"
)

return
IF(ISBLANK(cal), 0.00, cal)

Proud to be a Power BI Super User !

Microsoft Community : https://docs.microsoft.com/en-us/users/AmiraBedhiafi
Linkedin : https://www.linkedin.com/in/amira-bedhiafi/
StackOverflow : https://stackoverflow.com/users/9517769/amira-bedhiafi
C-Sharp Corner : https://www.c-sharpcorner.com/members/amira-bedhiafi
Power BI Community :https://community.powerbi.com/t5/user/viewprofilepage/user-id/332696

Hi AmiraBedh,
I tried that measure but it also gives the 0.00 as value for all the dates.

Can you please provide some of your dataset ?


Proud to be a Power BI Super User !

Microsoft Community : https://docs.microsoft.com/en-us/users/AmiraBedhiafi
Linkedin : https://www.linkedin.com/in/amira-bedhiafi/
StackOverflow : https://stackoverflow.com/users/9517769/amira-bedhiafi
C-Sharp Corner : https://www.c-sharpcorner.com/members/amira-bedhiafi
Power BI Community :https://community.powerbi.com/t5/user/viewprofilepage/user-id/332696

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