autofill non-number character

  • Thread starter Thread starter elaine
  • Start date Start date
E

elaine

Does anyone knows whether we can autofill alphabet characters?
ie autofill :

a
b
c
d
e
f
g
h
i
j
k
l .... etc?
 
Enter your alphabetic sequence as a Custom List (Tools/Options/Custom
Lists)
 
One way is to enter this formula in A1:

=CHAR(ROW()+96)
or
=CHAR(ROW()+64)
if you want upper case letters.

Then just copy the formula down. It will only work for 26 characters,
then you will get other symbols. Use Paste Special to fix the values.

Hope this helps.

Pete
 
Thanks Pete!
very useful!!!!

Elaine.


Pete_UK said:
One way is to enter this formula in A1:

=CHAR(ROW()+96)
or
=CHAR(ROW()+64)
if you want upper case letters.

Then just copy the formula down. It will only work for 26 characters,
then you will get other symbols. Use Paste Special to fix the values.

Hope this helps.

Pete
 
Elaine

Stick this formula in B1 and drag/copy down 26 rows or 256 rows if you want to
go to IV

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

I agree with J.E. that you should copy the a-z into your Custom Lists in
Tools>Options

Then you can autofill without any formulas.


Gord Dibben MS Excel MVP
 
Hey Gord,

How about putting the 2 together?

http://tinyurl.com/kgx65

--

Regards,

RD
----------------------------------------------------------------------------
-------------------
Please keep all correspondence within the Group, so all may benefit !
----------------------------------------------------------------------------
-------------------

"Gord Dibben" <gorddibbATshawDOTca> wrote in message
Elaine

Stick this formula in B1 and drag/copy down 26 rows or 256 rows if you want
to
go to IV

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

I agree with J.E. that you should copy the a-z into your Custom Lists in
Tools>Options

Then you can autofill without any formulas.


Gord Dibben MS Excel MVP
 
Thanks JE and Gord and Pete!! All very useful tips! didnt know that
theres a custom function before!!

elaine.
 

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