R
Rolf Edberg
Hi
I am trying to get time to format to only show hour and minutes (no
seconds). But this code does not work. How shall I do?
And how can I make it to show 24h in stead of AM/PM?
The Region Date and Time on my pc is changed to English(USA) to simplify it.
Thanks
Rolf
Sub HoursAndMinutes()
Dim aTime As String
Dim bTime As Date
Dim cTime As Date
aTime = "10:31:42"
bTime = CDate(aTime)
cTime = Format(bTime, "hh:mm")
MsgBox (cTime)
End Sub
I am trying to get time to format to only show hour and minutes (no
seconds). But this code does not work. How shall I do?
And how can I make it to show 24h in stead of AM/PM?
The Region Date and Time on my pc is changed to English(USA) to simplify it.
Thanks
Rolf
Sub HoursAndMinutes()
Dim aTime As String
Dim bTime As Date
Dim cTime As Date
aTime = "10:31:42"
bTime = CDate(aTime)
cTime = Format(bTime, "hh:mm")
MsgBox (cTime)
End Sub