SOLVED

Stop First Row Being Numbered in Excel

Copper Contributor

Only Excel can make you spend an hour on Google trying to find the answer and figure out what should be the most ridiculously simple thing to do:

 

Stop the First Row Being Numbered.

Seriously where is the simple check/uncheck option to do this?

Thanks.

17 Replies

@SkyTrader 

Do you mean the row numbers on the left hand side?

S0266.png

If so, there is no way to make them start on the second row.

If you meant something else, please explain.

@SkyTrader 

If your reference style is based on Table names and dynamic ranges then it is perfectly possible to hide the 'town plan' style of sheet coordinates and create more meaningful array indices linked to data objects rather than the sheet.

 

image.png

@Peter Bartholomew 
Hi Peter, thanks for the image, this is exactly what I want. A header with no zero and the rows starting with 1,2, 3 etc which will match my VIX levels of 1,2, and 3 etc. At the moment the VIX is "out of sync" with the Row numbers. Pls see image. Screenshot 2021-04-05 at 22.55.30.png

@SkyTrader 

 

You could hide excel's row/column headers. File/Options/Advanced and scroll down to the display options for this worksheet section.

 

JMB17_0-1617667896271.png

Thanks but this is why I wasted an hour earlier today despite clarifying my system and version (Macbook/Excel v16 2019 (and tried 2021)), none of the menus in the google search results/videos corresponded to my version....


@SkyTrader If it's the "Show row and column headers" switch (as suggested by @JMB17 ) that you are looking for in Excel for Mac, go to Excel, Preferences, View. Here you can switch off the row and column headers. It may look a bit different on your version but it should be very similar.

 Screenshot 2021-04-06 at 06.57.01.png

@SkyTrader 

I used the Excel 365 SEQUENCE function to generate fake row and column headers that matched the dimensions of the data ranges on the sheet (the sheet-based values being hidden as discussed subsequently).  You already have the 'VIX Reading's for that.  Formatting and sheet splits can be applied to taste.

 

Hiding the grid and sheet headings only makes sense if you adopt a referencing style that is entirely based on Names and Structured References.

Thanks @Peter Bartholomew,
How would I go about doing that step by step please, (instead of losing the far left column numbers via unticking Row/Col Headers - of which I might need to reference row/col values later)?
Cheers.

@SkyTrader 

Sorry but it is the unchecking of the headings that is a common feature of workbooks I deliver (though I do occasionally leave the headings and the grid showing as a 'comfort blanket' for users that would feel insecure without them).  As you point out, the row numbers systematically fail to index the content and I would suggest that the idea of denoting the columns by letters is ridiculous.  Whilst developing the workbook, the headings do provide controls, allowing rows/columns to be inserted or resized.  

 

Your record numbers in the 'VIX Reading' can be useful in formulas but, personally, I have little use for the values shown in the built-in headings.

 

Seriously, can anyone tell me how to do this or not??

Thanks.

@SkyTrader 

@Riny_van_Eekelen showed you how to switch of the built-in display of row and column headings.  You can then use worksheet cells to build index arrays to match your actual data by formula.

If you insist on using the built-in heading, but wish to show custom values, then the answer is "Seriously, no one can tell you how to do this" because it probably implies rewriting Excel to allow zero and negative row numbers.

best response confirmed by SkyTrader (Copper Contributor)
Solution

@SkyTrader 

Based on my experience and everything I've ever read, there is no way to change excel's row/column labels via excel's menu or vba, which is what it appears you are asking.

 

You can hide or unhide the row/column labels, and while you might be able to use a formula to visually replicate row/column label(s), either the custom row or column label won't agree to the actual cell references in your existing formulas, which comes back to Peter's comment regarding it would work better in a structured named environment.

 

You could do this (replicating excel's column letters), for example, but your data table row 1 will actually be Excel's row 3 (still mismatched, but it wouldn't be as obvious).

 

JMB17_2-1617770542786.png

 

Seriously, I don't see any available options that I think you will like based on what you've said thus far.

Thanks for the quick response @JMB17.
Seems like Excel could easily add such a feature and it surprises me it's not available based on the large number of queries on google.

Thanks to everyone else for your input.

@SkyTrader

There still is no way to stop the first row from being numbered, however if you want you could put the header and the first row of data both in row 1.

This is pretty unconventional and doesn’t even look much better but it still works completely fine.

To start, make an entirely new sheet where the properly listed data will be. In cell A1 enter the formula:

="[Insert Header for A1]"&CHAR(10)&
INDEX([Insert the original sheet name here]!A2)

So that the data from A2 on your original sheet is automatically combined with the header on A1. You will have to redo this for every column on your header row (so for example the next formula would be):

="[Insert Header for A2]"&CHAR(10)&
INDEX([Insert the original sheet name here]!B2)

 

Then for rows 2 and on just insert your data from rows 3 and on from your original sheet using the index function.

 

You should still be able to sort and filter data normally on your original data sheet, but also have another sheet to view your sorted list with correct numbering.

 

Its not a perfect solution; the new sheet will be a bit wonky and won’t be functional, but I think it’s still the best fix for this.

 

Let me know if it works for you or if you have any trouble with the formulas

 

Hope it helps,

 

Lowellhawk

Here is how it turned out for me: 

A2F8E1ED-4C43-4CAF-917D-692070C5EE11.jpeg

A62B1E90-D763-4610-9F41-F3AF6085A4A3.jpeg

EF74BB4D-758C-4C76-AE31-252CEF0B8A82.jpeg

@Peter Bartholomew 

 

The problem is that in my 2023 version of excel (in the Office suite), I do not have that option.  See Attached:

Wesley_Horton_0-1693325747324.png

 

Clearly, there is no option.  All I wish to do is have label bars without numberation.  Any ideas?

@Wesley_Horton 

Your screenshot cuts off below Close. Options should be near the bottom of the Excel window.

HansVogelaar_0-1693326334061.png

1 best response

Accepted Solutions
best response confirmed by SkyTrader (Copper Contributor)
Solution

@SkyTrader 

Based on my experience and everything I've ever read, there is no way to change excel's row/column labels via excel's menu or vba, which is what it appears you are asking.

 

You can hide or unhide the row/column labels, and while you might be able to use a formula to visually replicate row/column label(s), either the custom row or column label won't agree to the actual cell references in your existing formulas, which comes back to Peter's comment regarding it would work better in a structured named environment.

 

You could do this (replicating excel's column letters), for example, but your data table row 1 will actually be Excel's row 3 (still mismatched, but it wouldn't be as obvious).

 

JMB17_2-1617770542786.png

 

Seriously, I don't see any available options that I think you will like based on what you've said thus far.

View solution in original post