#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 103
Default Helluva question...

So here is my question. No idea if its possible, but is there a way to
create a macro that can be turned on and off that when it is on it can make a
certain key (lets say the Q key) actually work like the equals key? I am
going back and forth between the tab key and equals key a whole lot and would
be easier if i could just leave my hand in one place. I hope it can be done..
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Helluva question...

Maybe you could *temporarily* set AutoCorrect to replace q with =.

Biff

"brownti via OfficeKB.com" <u31540@uwe wrote in message
news:6dce4f0097d1a@uwe...
So here is my question. No idea if its possible, but is there a way to
create a macro that can be turned on and off that when it is on it can
make a
certain key (lets say the Q key) actually work like the equals key? I am
going back and forth between the tab key and equals key a whole lot and
would
be easier if i could just leave my hand in one place. I hope it can be
done..



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 103
Default Helluva question...

I like the idea, but doesnt work...just wishful thinking i guess


T. Valko wrote:
Maybe you could *temporarily* set AutoCorrect to replace q with =.

Biff

So here is my question. No idea if its possible, but is there a way to
create a macro that can be turned on and off that when it is on it can

[quoted text clipped - 4 lines]
be easier if i could just leave my hand in one place. I hope it can be
done..


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...excel/200702/1

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 772
Default Helluva question...

I recorded a macro quick and set it to come on with ctrl-q, it then sets auto
correct to change q to =, then another with ctrl-w to change it back, it
looks like this

Sub Macro1()
'
'
' Keyboard Shortcut: Ctrl+q
'
Application.AutoCorrect.AddReplacement What:="q", Replacement:="="
With Application.AutoCorrect
.TwoInitialCapitals = True
.CorrectSentenceCap = True
.CapitalizeNamesOfDays = True
.CorrectCapsLock = True
.ReplaceText = True
.DisplayAutoCorrectOptions = True
End With

End Sub
Sub Macro2()

'
' Keyboard Shortcut: Ctrl+w
'
Application.AutoCorrect.DeleteReplacement What:="q"
With Application.AutoCorrect
.TwoInitialCapitals = True
.CorrectSentenceCap = True
.CapitalizeNamesOfDays = True
.CorrectCapsLock = True
.ReplaceText = True
.DisplayAutoCorrectOptions = True
End With
End Sub
--
-John Northwest11
Please rate when your question is answered to help us and others know what
is helpful.


"brownti via OfficeKB.com" wrote:

So here is my question. No idea if its possible, but is there a way to
create a macro that can be turned on and off that when it is on it can make a
certain key (lets say the Q key) actually work like the equals key? I am
going back and forth between the tab key and equals key a whole lot and would
be easier if i could just leave my hand in one place. I hope it can be done..

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Newbie Question - Subtraction Formula Question [email protected] Excel Discussion (Misc queries) 3 May 5th 06 05:50 PM
< or question D Excel Worksheet Functions 3 February 18th 06 05:41 PM
The question is an excel question that I need to figure out howto do in excel. Terry Excel Worksheet Functions 3 January 23rd 06 06:22 PM
If Question Greg B Excel Discussion (Misc queries) 2 September 18th 05 02:04 PM
Another Sum Question Erin Shellman Excel Discussion (Misc queries) 14 June 20th 05 02:52 PM


All times are GMT +1. The time now is 05:04 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"