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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
ferbmeister
Regular Visitor

Utilization

Greetings all, looking for some assistance here. I'm new to Power BI and been given a complex task. Here's the task: find the utilization of certain vehicles, from a certain company, in a certain location, and provide the report in a Daily, monthly, Qtrly scenario (the user will select what date range).

 

Facts:

  1. Vehicle company (A, B, C, etc) can have multiple vehicles "checked out".  That count goes against their "on Hand" amount, which differs per location.
  2. There are different Vehicle types per company as well as amounts.
  3. Vehicles and be checked out different dates per location (i.e. Car from Comp A is out 1/1 to 1/8, while another car could be checked out 1/6-1/10).
  4. The check out day varies and there are not set limit.
  5. The as long as the "status" is "OPEN", vehicles checked out will count against "on hands".  If status is closed, the vehicle is back in stock/available.
  6. The return date will be filled based on the customer's request.  However, they can go over or under that time, this is where the "status" comes in to resolve that.

 

Vehicle type#of Vehicle usedCompany nameCheck outReturnDays usedLocationTotal On HandStatus
Car2A1/1/20241/8/20247Alpha10Open
Truck3A2/15/20242/23/20248Alpha5Open
Bus4A3/5/20243/18/202413Alpha7Close
Car7A1/5/20241/16/202411Bravo10Close
Truck3A1/27/20242/6/202410Bravo5Open
Bus4A2/5/20242/7/20242Charlie7Open
Car4A1/31/20272/7/20248Charlie8Open
Car4B2/16/20242/25/20249Alpha6Close
Truck1B2/18/20242/19/20241Alpha3Open
Car1C3/2/20243/14/202412Delta8Open
Car5C3/5/20243/14/20249Bravo8open
Truck2C2/22/20243/1/20248Bravo4open
Trailer1C2/22/20242/24/20242Bravo1close
Truck1D3/2/20243/4/20242Charlie4Open
Trailer2D1/19/20241/31/202412Charlie4Open
BUS2D1/1/20241/16/202415Charlie3Open

 

 

I have tried creating a measure that calculates the amount of vehicles given a certain selection from a slice, i.e. date range, company name, vehicle type , etc.  This works, but only shows base on selection.  I want to be able to show a daily monthly utilization, using a Matrix.  With the Matrix, i have done the basic which shows the count for each Company, based on a date, per vehicle type.  You can drill down and see the location.  

 

I would like to present the utilization both in percentage and fractional ( i.e 4/10) and this is where i'm stuck.  Any help pointing me to the right direction or is this not feasible?

 

Thanks!

1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey @ferbmeister ,

 

unfortunately there is no function that turns the percentage value into a fraction, this is also not possible. This means you have to create a measure that is creating a "string" like so:

 

var theCount = ...

var theAvailableCars = ...

return

theCount & "/" & theavailable cars

 

Hopefully, this provides an idea of how to tackle your challenge.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @ferbmeister , 

Did the solution TomMartens  offered help you solve the problem, if it helps, you can consider to mark it as a solution so that more user can refet to.

 

Best Regards!

Yolo Zhu

TomMartens
Super User
Super User

Hey @ferbmeister ,

 

unfortunately there is no function that turns the percentage value into a fraction, this is also not possible. This means you have to create a measure that is creating a "string" like so:

 

var theCount = ...

var theAvailableCars = ...

return

theCount & "/" & theavailable cars

 

Hopefully, this provides an idea of how to tackle your challenge.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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