Apr 05 2021 11:02 AM - edited Apr 05 2021 11:03 AM
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.
Apr 05 2021 11:21 AM
Do you mean the row numbers on the left hand side?
If so, there is no way to make them start on the second row.
If you meant something else, please explain.
Apr 05 2021 12:48 PM
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.
Apr 05 2021 02:59 PM
@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.
Apr 05 2021 05:11 PM
You could hide excel's row/column headers. File/Options/Advanced and scroll down to the display options for this worksheet section.
Apr 05 2021 07:27 PM - edited Apr 05 2021 07:46 PM
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....
Apr 05 2021 10:04 PM
@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.
Apr 06 2021 02:49 AM
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.
Apr 06 2021 07:23 AM
Apr 06 2021 01:00 PM
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.
Apr 06 2021 01:36 PM
Apr 06 2021 02:08 PM - edited Apr 06 2021 02:11 PM
@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.
Apr 06 2021 09:46 PM
SolutionBased 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).
Seriously, I don't see any available options that I think you will like based on what you've said thus far.
Apr 07 2021 12:30 AM
Apr 23 2023 12:37 AM - edited Apr 23 2023 12:46 AM
@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