Sequential alphanumeric cell value

DataMan123

New Member
Joined
Dec 19, 2016
Messages
5
I need a formula to follow a numbering from a designated cell and increase by a letter.
Like this:
if cell A1 is 161201A then cell A2 is 161201B and cell A3 is 161201C
and if possible to continue to 161201AA, 161201AB, 161201AC...
Anyone?
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
I need a formula to follow a numbering from a designated cell and increase by a letter.
Like this:
if cell A1 is 161201A then cell A2 is 161201B and cell A3 is 161201C
and if possible to continue to 161201AA, 161201AB, 161201AC...
Anyone?
Will the letter part of the first cell value always be an "A"?

What is the maximum letter part that will ever need to be "counted" up to?
 
Upvote 0
Istvan,
Perfect!
Can you tell me how to adjust your formula if I want to start the nunbering in another cell? IE: in A3
 
Upvote 0
MrExcel-

The number will vary(the number relates to two digit year, two digit month, and the next number in the queue), but yes, the letter will always begin with 'A'. Preferably an open ended formula would be nice, though rarely has the sequence pasted 'AR'.
 
Upvote 0
MrExcel-

The number will vary(the number relates to two digit year, two digit month, and the next number in the queue), but yes, the letter will always begin with 'A'. Preferably an open ended formula would be nice, though rarely has the sequence pasted 'AR'.

If you start in the first row, this method should work down to the 16,384th row, where the last code is 161201XFD.
 
Upvote 0
István

Worked perfectly!
=SUBSTITUTE(161201&ADDRESS(1,ROW(C1),4)&"ß","1ß","")
It seems the ROW() needs only any cell reference to function as I need; regardless of the value of referenced cell.
Many thank and Merry Christmas!
 
Upvote 0

Forum statistics

Threads
1,215,491
Messages
6,125,107
Members
449,205
Latest member
ralemanygarcia

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