+ Reply to Thread
Results 1 to 6 of 6

R1C1 keyboard shortcut

  1. #1
    Registered User
    Join Date
    10-04-2005
    Posts
    2

    R1C1 keyboard shortcut

    Does a keyboard shortcut exist to toggle the R1C1 function?

  2. #2
    David Billigmeier
    Guest

    RE: R1C1 keyboard shortcut

    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. #3
    Juan Pablo González
    Guest

    Re: R1C1 keyboard shortcut

    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" <[email protected]> wrote in
    message news:[email protected]...
    >
    > 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. #4
    Registered User
    Join Date
    10-04-2005
    Posts
    2

    Thanks!

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

  5. #5
    Registered User
    Join Date
    07-25-2012
    Location
    West
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: R1C1 keyboard shortcut

    Thank you.

  6. #6
    Registered User
    Join Date
    05-15-2017
    Location
    Illinois, Gurnee
    MS-Off Ver
    2013
    Posts
    1

    Talking Re: R1C1 keyboard shortcut

    Works Like a charm! Thank you!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1