+ Reply to Thread
Results 1 to 13 of 13

increasing letters not numbers

  1. #1
    Registered User
    Join Date
    12-11-2012
    Location
    bristol
    MS-Off Ver
    Excel 2007
    Posts
    40

    increasing letters not numbers

    Hi,

    I dont know to decribe the problem, so I will do it with this example:

    I dont want this

    A1=value in cell (copy down)
    A2
    A3
    A4
    A5

    I want this when copying down
    A1
    B1
    C1
    D1
    E1

    How do I do this?

    Please help!

    Thanks

  2. #2
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: increasing letters not numbers

    if you just want that from a through z in a column copied down
    =CHAR(65+ROWS($A$1:A1)-1)&1
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  3. #3
    Forum Expert Jakobshavn's Avatar
    Join Date
    08-17-2012
    Location
    Lakehurst, NJ, USA
    MS-Off Ver
    Excel 2007
    Posts
    1,970

    Re: increasing letters not numbers

    If you want the transpose of the items in the first row into the first column, then in A2 enter:

    =OFFSET(A$1,0,ROW()-1) and copy down
    Gary's Student

  4. #4
    Forum Expert bebo021999's Avatar
    Join Date
    07-22-2011
    Location
    Vietnam
    MS-Off Ver
    Excel 2016
    Posts
    9,477

    Re: increasing letters not numbers

    Another option:
    =ADDRESS(1,ROW(A1),4)
    Quang PT

  5. #5
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: increasing letters not numbers

    well if its transpose then
    =INDEX($1:$1,ROWS(A$1:A1))

  6. #6
    Registered User
    Join Date
    12-11-2012
    Location
    bristol
    MS-Off Ver
    Excel 2007
    Posts
    40

    Re: increasing letters not numbers

    Hi,

    Thank you for your responces, but I am not sure how to implement this (I am an exel noob)

    I have a cell (M3)with this formula in it

    =VLOOKUP(M2,A1:K9999,11,) The formula returns A160

    Now i want M4:M10 to be B160,C160,D160 and so on.

    If A160 changes, I want these cells to changes with it.

    Thanks!

  7. #7
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: increasing letters not numbers

    try
    =CHAR(CODE(LEFT($M$1))+ROWS($A$1:A1))&RIGHT(A1,LEN(A1)-1)

  8. #8
    Forum Expert bebo021999's Avatar
    Join Date
    07-22-2011
    Location
    Vietnam
    MS-Off Ver
    Excel 2016
    Posts
    9,477

    Re: increasing letters not numbers

    Try this in M4:
    Please Login or Register  to view this content.
    Finished with Ctrl-Shift-Enter

  9. #9
    Registered User
    Join Date
    12-11-2012
    Location
    bristol
    MS-Off Ver
    Excel 2007
    Posts
    40

    Re: increasing letters not numbers

    reply to martin:

    I copied the formula in M4, got VALUE!. Changed $M$1 to $M$4 (wich has A160 in it) got "Bate"
    Last edited by hond; 12-18-2012 at 09:30 AM.

  10. #10
    Registered User
    Join Date
    12-11-2012
    Location
    bristol
    MS-Off Ver
    Excel 2007
    Posts
    40

    Re: increasing letters not numbers

    reply to bebo:

    got this error: The specified formula cannot be entered because it usees more levels of nesting than are allowed in the current file format.

  11. #11
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: increasing letters not numbers

    oops
    =CHAR(CODE(LEFT($M$3))+ROWS($A$1:A1))&RIGHT($M$3,LEN($M$3)-1)

  12. #12
    Registered User
    Join Date
    12-11-2012
    Location
    bristol
    MS-Off Ver
    Excel 2007
    Posts
    40

    Re: increasing letters not numbers

    Can't thank you enough!

  13. #13
    Forum Expert bebo021999's Avatar
    Join Date
    07-22-2011
    Location
    Vietnam
    MS-Off Ver
    Excel 2016
    Posts
    9,477

    Re: increasing letters not numbers

    Quote Originally Posted by martindwilson View Post
    oops
    =CHAR(CODE(LEFT($M$3))+ROWS($A$1:A1))&RIGHT($M$3,LEN($M$3)-1)
    What if M3=Z160? or AA160? Solution in #8 may solve problem.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1