Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Operations by hour

Hi everyone ! I'm having some problems trying to calculate how many cars are in different hours. There is a problem of a parking lot.  I have the next data:    CheckIn Checkout 25/08/2021 0...
  • parry2k's avatar
    4 years ago

    Anonymous you need to create a table for hours to achieve the goal, you can add this table using following DAX:

     

    Hours = SELECTCOLUMNS ( GENERATESERIES ( 0, 23, 1 ), "Hour", [Value] )

     

    Add a new measure to count cars by the hour:

     

    Count Cars = 
    VAR __hour = MAX ( Hours[Hour] )
    RETURN 
    CALCULATE (
        COUNTROWS ( Parking ),
       __hour >= HOUR ( Parking[CheckIn] ),
       __hour <= HOUR ( Parking[Checkout] )
    )

     

    To visualize, use a table visual, add Hour columns from Hour table and Count Rows measure and you will get the following result:

     

     

    Follow us on LinkedIn

     

    Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

     

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.