Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
kemasch
 
Posts: n/a
Default R1C1 keyboard shortcut


Does a keyboard shortcut exist to toggle the R1C1 function?


--
kemasch
------------------------------------------------------------------------
kemasch's Profile: http://www.excelforum.com/member.php...o&userid=27785
View this thread: http://www.excelforum.com/showthread...hreadid=472967

  #2   Report Post  
David Billigmeier
 
Posts: n/a
Default

No but you can create a macro to do this. First, paste this code into the
VBA editor (Alt+F11):

Sub ChangeReferenceStyle()
With Application
If (.ReferenceStyle = xlA1) Then
.ReferenceStyle = xlR1C1
End
Else:
.ReferenceStyle = xlA1
End If
End With
End Sub

Then, Tools-Macro-"Macros..." Select the macro, hit "Options" and enter
the shortcut key you would like to toggle this.


--
Regards,
Dave


"kemasch" wrote:


Does a keyboard shortcut exist to toggle the R1C1 function?


--
kemasch
------------------------------------------------------------------------
kemasch's Profile: http://www.excelforum.com/member.php...o&userid=27785
View this thread: http://www.excelforum.com/showthread...hreadid=472967


  #3   Report Post  
Juan Pablo González
 
Posts: n/a
Default

Nope, but you can have a macro stored in your Personal workbook, and assign
a shortcut to it:

Sub ChangetoR1C1()
Application.ReferenceStyle = xlR1C1
End Sub

--
Regards,

Juan Pablo González
Excel MVP

"kemasch" wrote in
message ...

Does a keyboard shortcut exist to toggle the R1C1 function?


--
kemasch
------------------------------------------------------------------------
kemasch's Profile:
http://www.excelforum.com/member.php...o&userid=27785
View this thread: http://www.excelforum.com/showthread...hreadid=472967



  #4   Report Post  
kemasch
 
Posts: n/a
Default


Thanks David - works like a charm!!!!!


--
kemasch
------------------------------------------------------------------------
kemasch's Profile: http://www.excelforum.com/member.php...o&userid=27785
View this thread: http://www.excelforum.com/showthread...hreadid=472967

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
Keyboard Shortcut for "Paste Values"? Sam Excel Discussion (Misc queries) 7 April 2nd 23 07:31 PM
Keyboard Shortcut for moving between Worksheets mjcoco Excel Discussion (Misc queries) 3 June 3rd 05 03:35 PM
Keyboard shortcut to open links annonymous Excel Discussion (Misc queries) 0 April 7th 05 11:23 AM
keyboard shortcut Aditya Excel Worksheet Functions 1 February 21st 05 01:34 PM
Is there a keyboard shortcut for centering data in Excel? Antartica Excel Discussion (Misc queries) 2 November 30th 04 05:30 PM


All times are GMT +1. The time now is 08:38 AM.

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

About Us

"It's about Microsoft Excel"