Change . to represent :

  • Thread starter Thread starter DB74
  • Start date Start date
D

DB74

I am 10-keying times into a spread sheet. Is there a way to make a .
represent : for time so I can 10-key it faster?
 
Make a temporary entry into the Tools | Autocorrect table, so that .
gets converted into :

Ensure that you delete the entry when you are finished.

Hope this helps.

Pete
 
In xl2003 menus:

Tools|autocorrect Options|Autocorrect tab
Add an entry to correct . (dot) with : (colon)

Remember to remove it when you're done.

And be aware that those autocorrect entries affect all the programs in the
Office Suite.
 
Sorry... I am using a 10-key to enter the data and want to use the decimal to
represent :...
 
you could use ~ as a delimeter and do an autocorrect
~ to : to eliminate the shift key and reduce it to 8 keys.

Mike
 
And be aware that those autocorrect entries affect all the programs in the
Office Suite.
I didn't know that Dave - thanks for pointing it out.

Pete
 
10-keying refers to the use of the numeric key pad to enter numbers. There
is no ":" on the keypad.

Tyro
 
Thanks for everyone's suggestions...
I was able to make a control box macro to do it...

Private Sub CheckBox1_Click()
If CheckBox1 Then
Application.AutoCorrect.AddReplacement What:=".", Replacement:=":"
Else
Application.AutoCorrect.DeleteReplacement What:="."
End If
End Sub

This seems to work well.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top