Forum Discussion
imontoya14
5 years agoFrequent Visitor
How to remove seconds from time column?
How can I remove seconds from this time column? any help is greatly appreciated.
- 5 years ago
Hello imontoya14 ,
Here is an option:
=DateTime.From(Number.RoundDown(Number.From(DateTime.From([Time]))*(24*60/1))/(24*60/1))Also here is an article with explanation and other rounding options: How to categorize and group data in time intervals with Power Query .
Did I answer your question? Mark my post as a solution!
selimovd
5 years agoMost Valuable Professional
Hey imontoya14 ,
add a new column with the DateTime.ToText function. With the second format parameter you can format it without seconds:
DateTime.ToText([DateTime], "yyyy/MM/dd hh:mm")
Afterwards change the date type again to "Date/Time". Then you should have the values without seconds.
If you want to skip one step you can also directly convert it to date/time in the same step:
DateTime.FromText( DateTime.ToText( [DateTime], "yyyy/MM/dd hh:mm" ) )
Let me know if that works for you. If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
imontoya14
5 years agoFrequent Visitor
any help is appreciated. Thank you.