Forum Discussion

ferbmeister's avatar
ferbmeister
Regular Visitor
2 years ago
Solved

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 loc...
  • TomMartens's avatar
    2 years ago

    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