I have a tag that's going into a label. It is military time and need it to convert to be converted to military time.
The tag is formatted hhddss, I am trying to get it to format as hh:dd:ss AM/PM... the closest I have gotten is
concat(substring({value}, 0, 2), ":", substring({value}, 2, 2), ":",substring({value}, 4, 2) )
The value is a INT, the value could be something like 135428 -> 1:54:28 PM or 105236 -> 10:52:36 AM.
I feel like it has to be a really simple expression change, but I am just missing that last piece.