Fill Series

  • Thread starter Thread starter JonA2
  • Start date Start date
J

JonA2

Starting with AAA, does anyone have the "short" formula to get a row to
"fill" with AAB, AAC etc etc (needing about 400 in sequence). Thanks.
 
There may be an easier way, but try
=CHAR(MOD((COLUMN()-1)/(26*26),26)+65)&CHAR(MOD((COLUMN()-1)/26,26)+65)&CHAR(MOD(COLUMN()-1,26)+65)--David Biddulph"JonA2" <[email protected]> wrote in messageStarting with AAA, does anyone have the "short" formula to get a row to> "fill" with AAB, AAC etc etc (needing about 400 in sequence). Thanks.
 
For versions of Excel earlier than 2007 which are limited to 256 columns,
try David's edited formula copied down a column 400 rows

=CHAR(MOD((ROW()-1)/(26*26),26)+65)&CHAR(MOD((ROW()-1)/26,26)+65)&CHAR(MOD(ROW()-1,26)+65)


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top