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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
divyaraj1407
New Member

My average rate is showing more than 100%

This is my DAX, but not sure why it is showing more than 100% when I'm trying calculate my average rate.

 

Avg Utilisation Rate =
(DIVIDE(SUM('Office Utilisations'[Seat Utilisation]),
    SUM('Total Seating Capacity'[Current Seat Count]))) * 100
 
I used this one too,
Avg Utilisation Rate = (DIVIDE(SUM('Office Utilisations'[Seat Utilisation]), 'Office Utilisations'[Date count])) * 0.01
 
Please help?
1 ACCEPTED SOLUTION
sanalytics
Super User
Super User

@divyaraj1407 
Instead of doing straight SUM can you wrap your formula with an iterator.. See the below code works for you or not.. If not, i suugest you to provide your pbix file with dummy data so that we can check from our end.

AVERAGEX(
    VALUES('Office Utilisations'[Date]),
    DIVIDE(
        SUM('Office Utilisations'[Seat Utilisation]),
        SUM('Total Seating Capacity'[Current Seat Count])
    )
) * 100

Hope it helps.

 

Regards

sanalytics

 

View solution in original post

6 REPLIES 6
v-saisrao-msft
Community Support
Community Support

Hi @divyaraj1407,

May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.

Thank you.

sanalytics
Super User
Super User

@divyaraj1407 
Instead of doing straight SUM can you wrap your formula with an iterator.. See the below code works for you or not.. If not, i suugest you to provide your pbix file with dummy data so that we can check from our end.

AVERAGEX(
    VALUES('Office Utilisations'[Date]),
    DIVIDE(
        SUM('Office Utilisations'[Seat Utilisation]),
        SUM('Total Seating Capacity'[Current Seat Count])
    )
) * 100

Hope it helps.

 

Regards

sanalytics

 

divyaraj1407
New Member

I'm using this at the moment, I'm bit new to power Bi

Avg Utilisation Rate = (DIVIDE(SUM('Office Utilisations'[Seat Utilisation]), 'Office Utilisations'[Date count])) * 0.01
 
however, when I have something like below instead of calculating for 100%. This is the simple calculation I'm trying,
divyaraj1407_1-1745393470193.png

 

 
divyaraj1407_0-1745393350780.png

 

Hi @divyaraj1407,

 

We haven’t heard back from you regarding your issue. If it has been resolved, please mark the helpful response as the solution and give a ‘Kudos’ to assist others. If you still need support, let us know.

 

Thank you.

Hi @divyaraj1407,
I wanted to check if you had the opportunity to review the information provided by @sanalytics. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.

Deku
Super User
Super User

Assume this is related to your data. Confirm the numerator is less than your demoninator.

 

You can debug by creating measures for both numerator and denominator and visualing in a table


Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.