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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
GeorgesKV
Helper I
Helper I

Power Bi showing 10.8% instead of 110.8%!

Hey all,

So I have a calendar table with all the days and another column that has a DAX function doing this ( if is holiday or weekend equals 0 else 8), 8 is the standard daily work hours we have here in the company, this is working as expected, this column is called standard hours.

Aside from that, I have a table with all the employee and the hours they worked etc.

I've created a quick measure that is "sum of work hours divided by standard hours" in %, pretty simple right? But although the calculation is right, the visualization doesn't work as expected, see the image below:

image.png

So, this employee, worked 178 hours in April, in our company the standard is 5 days per week, 8 hours per day, so the math is:

5x8= 40 hours per week
4x40= 160 hours per month

So he worked 178 hours instead of the standard 160 hours for that month, this should be 110.8% (111% rounding up) but PBI is showing 10.8%.

I don't know what I'm doing wrong here.

Any thoughs?

9 REPLIES 9
rafaelmpsantos
Responsive Resident
Responsive Resident

Quick Measures are not too efficient and smart sometimes. Show us the measure created by quick measure

Total Ult. % =
DIVIDE(SUM('Hours Total'[Time (Hours)]), SUM('Calendar'[DayHours]))

Here you go, @rafaelmpsantos

Well, the measure is ok.

but try this

Total Ult. % =
DIVIDE(SUM('Hours Total'[Time (Hours)]), SUM('Calendar'[DayHours]))+1

@rafaelmpsantos the displayed numbers are right now but it broke the chart:

image.png

 

 


And if I try to do the same with "billable %", the results are very wrong, right now it should be 3% instead of 0.3% with the +1 it goes to 103%.

Use an if statement, if ( total hours > requested hours, your current calculation + 1, your current calculation)

@Xvierlh I'm sorry, should I add this to the measure?

Yes,

Currently i am posting on mobile please check for any missing parenthesis or typo.

Total Ult. % =
If(SUM('Hours Total'[Time (Hours)])>SUM('Calendar'[DayHours]), DIVIDE(SUM('Hours Total'[Time (Hours)]), SUM('Calendar'[DayHours]))+1, DIVIDE(SUM('Hours Total'[Time (Hours)]), SUM('Calendar'[DayHours])))

Thanks @Xvierlh but nothing changes, the DAX worked but it remained the same %.

Hi @GeorgesKV,

 

If it is convenient, could you share a dummy pbix file which can reproduce the scenario, so that we can help further investigate on it? You can upload it to OneDrive or Dropbox and post the link here. Do mask sensitive data before uploading.)

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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.