Forum Discussion
Operations by hour
- 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.⚡
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.⚡
- Anonymous4 years agoNot applicable
Thank you. It worked as I expected