Forum Discussion

imontoya14's avatar
imontoya14
Frequent Visitor
5 years ago
Solved

How to remove seconds from time column?

How can I remove seconds from this time column? any help is greatly appreciated. 

 

6 Replies

  • selimovd's avatar
    selimovd
    Most 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
     
    • imontoya14's avatar
      imontoya14
      Frequent Visitor

      Hi there, thank you for your response. That worked but it looks like it created another problem. Upon creating the new column and completing the changes above. It switched my AMs to PMs and vise versa. How can I fix this so the format (AM/PM) does not change.