Consulting

Results 1 to 3 of 3

Thread: Solved: R1C1 AND Letters - is there a way to see both

  1. #1

    Solved: R1C1 AND Letters - is there a way to see both

    Hello All. I'm in Excel 2007, and find my self going back and forth between R1C1 display and letters for Columns constantly. Wondered if anyone knew a way to display both, or alternately a shortcut instead of going to the Office button, Excel options, Formulas etc. Am I crazy or would anyone else find this helpful? Thanks in advance.

    Betty

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Just write a simple macro

    [vba]

    Sub ToggleReferenceStyle()

    With Application

    .ReferenceStyle = IIf(.ReferenceStyle = xlR1C1, xlA1, xlR1C1)
    End With
    End Sub
    [/vba]

    add a button to the QAT and assign it to that button
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3

    Resolved - R1C1

    Thanks for making my Friday. Worked like a charm. You rock.

    Betty.

Posting Permissions

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