Forum Discussion
Anonymous
6 years agoNot applicable
How to Round to Start Hour, DirectQuery!
Dear all, I need to round current time to the start hour, but i'm working in direct query. When i try do this on "edit query" tell me that's not supported in direct query mode. I need to...
- 6 years ago
Hi Anonymous ,
We can create a calculated column to meet your requirement:
StartHour = [DateTime] - DIVIDE ( MINUTE ( [DateTime] ), 60 * 24, 0 ) - DIVIDE ( SECOND ( [DateTime] ), 3600 * 24, 0 )
Best regards,
v-lid-msft
6 years agoCommunity Support
Hi Anonymous ,
We can create a calculated column to meet your requirement:
StartHour =
[DateTime]
- DIVIDE ( MINUTE ( [DateTime] ), 60 * 24, 0 )
- DIVIDE ( SECOND ( [DateTime] ), 3600 * 24, 0 )
Best regards,
Anonymous
6 years agoNot applicable
It is because time is not only in seconds.
Is it possible to round the date to seconds?