Military Time Userform input

sassriverrat

Well-known Member
Joined
Oct 4, 2018
Messages
655
Hello All- I have a userform with a few text boxes. Two of the text boxes are used for time inputs. I'd like the times to be put in formatted as military times (0001 or 1040 or 2304 (no colons)). These textboxes input data into a few excel boxes on "Voyages" sheet. How would I format that?

Thanks
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hello All- I have a userform with a few text boxes. Two of the text boxes are used for time inputs. I'd like the times to be put in formatted as military times (0001 or 1040 or 2304 (no colons)). These textboxes input data into a few excel boxes on "Voyages" sheet. How would I format that?

Thanks

You can try to adapt

Code:
Private Sub TxtObsStart_BeforeUpdate(ByVal Cancel As MSForms.ReturnBoolean)
'Correct wrong format
TxtObsStart = Format(TxtObsStart,"hhmm")
'Force time format
If Not Me.TxtObsStart Like "????" Then
MsgBox "Please use Military format 'hhmm'"
TxtObsStart.SetFocus
Cancel = True
Exit Sub
End If
'Time is accepted
ObsStart = Application.WorksheetFunction.Text(Me.TxtObsStart, "hhmm")
Me.TxtObsStart = ObsStart
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,639
Messages
6,125,968
Members
449,276
Latest member
surendra75

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top