alphanumeric sku numbers

  • Thread starter Thread starter Cblaine
  • Start date Start date
C

Cblaine

How can I get excel to generate alphnumeric skus?

AA-0001
AA-0002
AA-0003
 
Hi,

In any cell as the starting point, enter the following formula, and drag to
fill down the column.

=IF(ROW(A1)>999,"AA-",IF(ROW(A1)>99,"AA-0",IF(ROW(A1)>9,"AA-00","AA-000")))&ROW(A1)

Hope ithis helps,

Regards,
B. R. Ramachandran
 
Do you mean you want to generate sequential SKUs? If so, enter one of them
into a cell, then drag that cell down by the fill handle. Done. HTH Otto
 
Hi Max,

Very nice formula!

A variation:
="AA-" & TEXT(ROW(A1),"0000")

Regards,
B. R. Ramachandran
 
Hi,

Just type AA-0001 in one cell and then drag down the fill handle (corner
right). Hope this helps.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
 

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

Similar Threads


Back
Top