Forum Discussion
ROUNDDOWN TIME
Hello guys,
I am looking at using the ROUNDDOWN function.
I want to ROUNDDOWN time in all transactions made in a specific hours throughout the day. Say there were 15 transactions between 9 am and 10 am.. 9:01:02am, 9:10:05am, 9:12:52am etc.. All rounddown to 9:00:00am or 9:00am so I can measure day by the hour.
I have tried
= ROUNDDOWN(Query[TIME], 1) which messes up the result
= ROUNDDOWN(Query[TIME], "1:00") which gives me an error, cannot convert value
The time is in H:mm:ss
- Anonymous6 years ago
You could find more explaination and examples about the "round up" for time below.
https://community.powerbi.com/t5/Desktop/Round-time-DOWN-to-the-nearest-5-15-30-minutes/td-p/311676
https://community.powerbi.com/t5/Desktop/Round-up-time-to-next-hour/td-p/701404
But, in your scenario, you could take a easy way as below:
Column = TIME(HOUR([time]),0,0)Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
4 Replies
- AnonymousNot applicable
Try creating a new column with the following measure
=MROUND( [Time], "0:15" )
But make sure that the new column data type is Time.
- carlosagarciaHelper I
It partially works but anything done after 9:45AM rounds up to 10AM.
- AnonymousNot applicable
- v-juanli-msftCommunity Support
You could find more explaination and examples about the "round up" for time below.
https://community.powerbi.com/t5/Desktop/Round-time-DOWN-to-the-nearest-5-15-30-minutes/td-p/311676
https://community.powerbi.com/t5/Desktop/Round-up-time-to-next-hour/td-p/701404
But, in your scenario, you could take a easy way as below:
Column = TIME(HOUR([time]),0,0)Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.