Incremental column addresses

ChristineJ

Well-known Member
Joined
May 18, 2009
Messages
762
Office Version
  1. 365
Platform
  1. Windows
In column M is a sequential list of column addresses that I need to add to. Is there a way to use a function so that the next column address in the sequence appears automatically rather than my having to type it in?

O
P ... rather than typing in "P", it would be the column value above "plus 1"?
Q
R
S
T
U
V
W
X
Y
Z
AA
AB
AC
AD
AE
AF
AG
AH
AI
AJ
AK
AL
AM
AN
AO
AP
AQ
continues...
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Try this:

M
1O
2=SUBSTITUTE(ADDRESS(1, COLUMN(INDIRECT(M1 & 1))+1, 2), "$1", "")

<tbody>
</tbody>
 
Upvote 0
If you're simply starting at row 1 is column A just enter this and drag it down however many cells you want to reference

=SUBSTITUTE(ADDRESS(1,ROW(),4),"1","")

If you're starting other than A=1 just add whatever number you need to the row element of the formula

=SUBSTITUTE(ADDRESS(1,ROW()+14,4),"1","")
 
Last edited:
Upvote 0
MrTeeny - Thanks so much! I am actually starting at M4; should have stated that. I was able to work with V-Malkoti's code before I saw yours. All working fine!

Thanks so much to both of you for the quick responses.
 
Upvote 0
No problem, the method I posted just references whichever ROW you've entered the formula in so entered in M4 it would show as D simply as that's row 4, if you wanted it to show as O in M4 you'd just add 11 to the ROW() i.e. =SUBSTITUTE(ADDRESS(1,ROW()+11,4),"1","") and it'd work wherever you placed it on the sheet without the need to reference some a letter
 
Upvote 0

Forum statistics

Threads
1,216,111
Messages
6,128,898
Members
449,477
Latest member
panjongshing

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top