Time formatting 10:00:00 to 10:00

Greetings,

I have a start time and end time columns that when I am entering data are fine and show
10:00 AM and 01:00 PM within the app.

In the google sheet backend they show as 10:00:00 and 13:00:00

I have created a virtual column to display theses values as headers using concatenate.
CONCATENATE([Start Time], โ€œโ€“โ€,[End Time])

This results in the header showing
10:00:00โ€“13:00:00

How can I format this so that I get either
10:00โ€“13:00 or 10:00AMโ€“01:00PM

Thank you in advance.

Solved Solved
0 1 192
1 ACCEPTED SOLUTION

I figured it out

CONCATENATE(text([Start Time],โ€œH:MM Am/Pmโ€), โ€œโ€“โ€,text([End Time],โ€œH:MM Am/Pmโ€))

Additionally using just 1 H instead of 2 HH makes 13:00 read like 1:00 PM instead of 01:00 PM

View solution in original post

1 REPLY 1

I figured it out

CONCATENATE(text([Start Time],โ€œH:MM Am/Pmโ€), โ€œโ€“โ€,text([End Time],โ€œH:MM Am/Pmโ€))

Additionally using just 1 H instead of 2 HH makes 13:00 read like 1:00 PM instead of 01:00 PM

Top Labels in this Space