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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
snolan175
Frequent Visitor

Resource Utilisation - Different Target Percentage

I'm trying to create a utilisation report with two base tables:

 

One is the time entries broken down by resource and day, with each entry having a time category from the following; Internal, Absence and Billable.

 

I then have the resource table which has a hard coded % billable time target e.g.

 

ResourceHours Per WeekDescriptionStarting Day of the WeekEfficiency Percentage
Person 122.53D 22.5H M-WMonday30%
Person 237.5Reg WeekMonday75%
Person 3304D 30H M-TMonday70%
Person 422.53D 22.5H T-TMonday60%
Person 533.754.5D 33.75H W PM OffMonday50%

 

How would I create a gauge looking at actual billable hours as a % of total time vs the efficiency ratio as the target %, I want to be able to slice this based on date ranges and individual resource.

 

Thanks

1 ACCEPTED SOLUTION

Hi @snolan175 ,

I can give you an example:
If you want to show the Efficiency Percentage of Person 1, just use this DAX to create a measure:

Measure = 
CALCULATE(
    MAX('Table'[Efficiency Percentage]),
    'Table'[Resource] = "Person 1"
)

vjunyantmsft_0-1711532070855.png

If you need to calculate other Efficiency Percentages, please explain your calculation process in detail. I can try to write DAX for you.


Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
v-junyant-msft
Community Support
Community Support

Hi @snolan175 ,

First of all, based only on the information you have provided, I cannot understand what results you need to get. It would be helpful if you could provide the complete sample data for both tables and the desired results you ultimately want to get!
Also, a gauge can only display one piece of data, so if you want all the data in your table to be displayed in gauges, you may need to create multiple gauges, unless you want to display the sum of all the Resources. Please consider using a table or matrix visual object.

Best Regards,
Dino Tao

Hi Dino,

 

I want to know how to set the target on a gauge or KPI chart to be the resource's efficiency percentage from the table above which is their target billable time, I have managed to calculate the actual billable time, but just want to add the target but not sure how to create a measure to show the % from the table. 

Hi @snolan175 ,

I can give you an example:
If you want to show the Efficiency Percentage of Person 1, just use this DAX to create a measure:

Measure = 
CALCULATE(
    MAX('Table'[Efficiency Percentage]),
    'Table'[Resource] = "Person 1"
)

vjunyantmsft_0-1711532070855.png

If you need to calculate other Efficiency Percentages, please explain your calculation process in detail. I can try to write DAX for you.


Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks Dino, I ended up using the selected value function rather than an absolute:

 

Target Utilisation = CALCULATE(MAX(Efficiency[Efficiency Decimal]),
    FILTER(Resource_Card_Excel,Resource_Card_Excel[No] = SELECTEDVALUE(Resource_Card_Excel[No]))
)
Musadev
Resolver III
Resolver III

Can you share the format of both tables with only one resource data?

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.