how to input consecutive alphabet data?

  • Thread starter Thread starter news.microsoft.com
  • Start date Start date
N

news.microsoft.com

how to input consecutive alphabet data?
for example a, b, c etc,
k_a, k_b, k_c, etc.
 
news,
Put 97 in B1, then copy it down with the fill hjndle holding the Ctrl key. That will give
you 98, 99, etc.

Put this formula in cell A1:
="k_" & CHAR(B1)
COpy it down with the fill handle
 
Back
Top