Increment Letters (A+1 = B)

G

Guest

Guest
How do i increment the letters?
I want to be able to select cells A1, then B2, then C3 etc.
I can easily increment the rows, how do i increment columns?? thks
 
boim Thanks
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
It’s working & sorry for "Than"<o:p></o:p>
<o:p></o:p>
Thanks Again<o:p></o:p>
 
Upvote 0

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
hi,

help please. im trying to create an increment from AAA001 to ZZZ999 (AAA001,AAA002,AAA003...AAA999, AAB001, AAB002, AAB999)

any help? thanks
 
Upvote 0
Sorry, the pictures didn't show. So these are the table parts that I was talking of:

1st part:


-- removed inline image ---
D E
1 New A
2 Dupl A
3 New B
4 Dupl B
5 New C

2nd part:

D E
56 Dupl Z
57 New AA
58 Dupl AA
59 New AB
60 Dupl AB
 
Upvote 0
FROM A-Z and THEN ZA -ZZ THEN ZZA - ZZZ is this possible??

is there a way to:

FROM A-Z and THEN ZA -ZZ THEN ZZA - ZZZ, etc is this possible??


boim;22[CODE said:
[/CODE]12232]You meant "then" not "than" ?

one possible way is:

Code:
=SUBSTITUTE(ADDRESS(1,COLUMN($A$1)+ B2,4),"1","")

where B2 is the amount of increment.

or put this from A1 down

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

Have you considered tusharm / Juan PG suggestions instead of trying whatever approach you're doing now?
 
Upvote 0
HI

Try in any cell:-
Code:
=LEFT(ADDRESS(1,ROWS($1:1),2),FIND("$",ADDRESS(1,ROWS($1:1),2))-1)
and drag down for A-Z.

Adjust each ROWS part by adding 666 to get ZA onwards by starting the formula from row 27.

ZZA onwards is not possible with this formula.

hth
 
Last edited:
Upvote 0
Apologies I mucked up on the calculations for ZA in the above post.

Here is the corrected formula which will do A-Z and ZA - ZZ :-
Code:
=LEFT(ADDRESS(1,ROWS($1:1)+(ROWS($1:1)>26)*650,2),FIND("$",ADDRESS(1,ROWS($1:1)+(ROWS($1:1)>26)*650,2))-1)
 
Upvote 0
Try this formula and drag down :

=LEFT(ADDRESS(1,ROWS($1:1),4),FIND(1,ADDRESS(1,ROWS($1:1),4))-1)

In Excel 2003, the above formula can obtain A - Z, AA - IV (totally 256 nos.)

In Excel 2007, the above formula can obtain A - Z, AA - ZZ and AAA - XFD ( totally 16384 nos.)

Regards
 
Upvote 0

Forum statistics

Threads
1,214,912
Messages
6,122,204
Members
449,072
Latest member
DW Draft

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