How do I enter mins and secs in Excel without using caps/colon

  • Thread starter Thread starter Alphie
  • Start date Start date
A

Alphie

Using Excell, I need to fill columns with minutes and seconds (ie 10:22).
Having to use caps and colon to insert the colon between the minute and
seconds is time consuming, is there any way round this anybody please?
 
Two options:

1. Enter the data in one cell, and use a formula to convert it to a time in
another:
=time(0,int(a1/100),mod(a1,100))
2. Use an event macro to convert it in place.

If you want the event macro, post a request in the .programming group.

Regards,
Fred
 
Back
Top