Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Solved! Go to Solution.
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]))
Thank you! This worked. 😊
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]))
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
11 | |
9 | |
6 |