I want to split this time format
in something like
How can I split the time?
so after that I can update this statement5:03:00 PM
If .Value >= TimeSerial(9, 0, 0) And .Value < TimeSerial(9, 5, 0) Then
in something like
If .Value >= TimeSerial(myH1, myM1, 0) And .Value < TimeSerial(myH2, myM2, 0) Then
How can I split the time?