CONCATENATE with 12 hour time

Hi,

I’m using the following expression in a virtual column. The StartTime/EndTIme columns display in 24 hour format. How can I change this to 12 hours?

Thanks

CONCATENATE([Service 1], " ", [StartTime], " “,[EndTime],” ", [First_Last Name])

Solved Solved
0 11 1,129
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try wrapping [StartTime] and [EndTime] in TEXT():

CONCATENATE(
  [Service 1],
  " ", 
  TEXT([StartTime]),
  " ",
  TEXT([EndTime]),
  " ",
  [First_Last Name]
)

View solution in original post

11 REPLIES 11
Top Labels in this Space