Some of Jerry's workbooks keep reverting to showing both columns and rows as numbers. (In other words, he doesn't see columns A, B, or C anymore. Instead he sees columns 1, 2, and 3.) Jerry wants to forbid this from ever happening and he has spent quite a bit of time trying to find someone who can tell him how to NEVER use that option nor have it available.
The bothersome (to Jerry) way that he is seeing columns displayed is actually a feature in Excel. It even has a name—R1C1 format, which means "row 1 column 1." It is a way of referring to rows and columns that is a "holdover" from older spreadsheet programs. Some people prefer this method of cell reference, while it drives other people (like Jerry) crazy.
To control the R1C1 setting, follow these steps:
Figure 1. The Excel Options dialog box.
The R1C1 setting is stored as part of a workbook, but interestingly enough it is not always paid attention to by Excel. For instance, let's say that I open a workbook, turn on R1C1, save the workbook, and exit Excel. When I next start Excel, R1C1 will still be turned on—the program apparently remembers what setting I last used.
If I open Excel by double-clicking on a workbook, then whatever R1C1 setting is stored in that workbook is used. This only works for the first workbook opened in the session of Excel. Thus, if the workbook I open to start my Excel session has R1C1 turned, on, then R1C1 is turned on for all the workbooks I subsequently open during that session, regardless of whether it was turned on for those workbooks or not.
The reverse is also true—if the first workbook I open in a session has R1C1 turned off, then it remains turned off for any other workbooks I open during the session, regardless of what R1C1 setting they had when they were saved.
This can lead to some very frustrating results, and I suspect it is the frustration felt by Jerry. Excel seems to automatically use R1C1 format if any of the following conditions are met: (1) you have changed the default workbook to use R1C1 format; (2) if there is some sort of AutoOpen macro that turns on R1C1 format; (3) if you have some automatically loading workbooks (XLSX or XLTX, including the Personal workbook) that has R1C1 turned on; or (4) if you start Excel by double-clicking, in Windows, on a workbook that was saved with R1C1 turned on.
Note, especially, conditions 3 and 4. Excel may very well be starting with R1C1 turned off, but it is overridden by the setting within the file that is first opened. If that workbook has R1C1 turned on, then Excel presumes you want R1C1 used for that session. The only solution to this problem is to open those workbooks, clear the R1C1 setting, save them, and restart Excel.
Confusing, huh? (And, remember, this is all apparently by design!)
Perhaps the best thing to do is to create a small macro that turns off R1C1 mode. Let's say that you get a workbook from someone via e-mail and then you open that workbook. If it is the first workbook of your Excel session and it has R1C1 turned on, then you are stuck with R1C1 turned on for the duration of your session. While you could follow the four steps earlier, a macro on your Quick Access Toolbar could be used to turn off R1C1. Here's an example:
Sub TurnOffR1C1() Application.ReferenceStyle = xlA1 End Sub
Click it, and you are back to "normal" for Excel, for that workbook. If you prefer a macro that simply switches between normal and R1C1 format, you could use the following:
Sub SwitchR1C1() With Application If .ReferenceStyle = xlR1C1 Then .ReferenceStyle = xlA1 Else .ReferenceStyle = xlR1C1 End If End With End Sub
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9960) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Office 365.
Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!
The Formula Bar is a regularly used feature in the Excel interface. You can, however, modify whether Excel displays the ...
Discover MoreDifferent cultures have different conventions for displaying numbers and for parameters in Excel's worksheet functions. ...
Discover MoreYou can use some of the tools in Excel to convert cell references in formulas into names. Converting back (from names ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-01-12 09:22:28
Gavin Denyer
Thank you John, for a clear and accurate solution.
2020-07-03 09:20:21
Peter J Moran
Hi John,
A quick Google!
Microsoft Multiplan
When Microsoft came out with its first spreadsheet product, Microsoft Multiplan, it used a very different method of cell addressing, known as R1C1. In the Microsoft system, the rows are numbered just as in the A1 system.
Fancy that!
2020-07-01 17:04:39
John Mann
Just as a matter of curiosity, I'm wondering which early spreadsheet used the R1C1 reference style. My original spreadsheet training was for Lotus 1-2-3 ver 5 and Excel 4.0, and I also had a very crude and simple spreadsheet on my Tiimex-Sinclair ZX81 (whicch I had expanded to all of 16K memory!). These all labeled their columns by letters.
Just curious
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments