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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
aeinc01
Frequent Visitor

Simple DAX Query not calculating correctly.

Hi,

 

I'm looking on for an answer why my DAX query isn't calcualtiing correctly. Currently this is the query I'm using, simply trying to calcualte utilization, i.e. realized/booked_to_run:

 

Utilization = DIVIDE(

SUMX('DW_H_POD', 'DW_H_POD'[billable_rate] * 'DW_H_POD'[hours]), SUM('DW_H_POD'[billable_rate])

)

However, I'm getting a completley differnt total. For example 

Realized is 35,285/14,440  and I'm getting 1.95 instead of 2.44. 

 

Any suggestions will be much appreciated. 

 

Thanks. 

1 ACCEPTED SOLUTION
DallasBaba
Skilled Sharer
Skilled Sharer

Hi @aeinc01 

Do you have a columns for realized value ? Is so try
Utilization = DIVIDE(SUM('DW_H_POD'[realized]), SUM('DW_H_POD'[booked_to_run]))

Thanks
Dallas

View solution in original post

2 REPLIES 2
aeinc01
Frequent Visitor

Thank you! This worked. 😊

DallasBaba
Skilled Sharer
Skilled Sharer

Hi @aeinc01 

Do you have a columns for realized value ? Is so try
Utilization = DIVIDE(SUM('DW_H_POD'[realized]), SUM('DW_H_POD'[booked_to_run]))

Thanks
Dallas

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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