+ Reply to Thread
Results 1 to 3 of 3

Increment letter on different sheet

  1. #1
    Registered User
    Join Date
    10-12-2007
    Posts
    36

    Talking Increment letter on different sheet

    Guys,
    I'd really appreciate your help with this cause I can't figure this one out. Its very simple what im trying to do!

    I have a cell reference in A1 with ='P&L Summary'!C100

    I want to drag it down (to A2, A3, A4 etc) but I want the letter to increment - not the number.
    So in:
    A2 i will have ='P&L Summary'!D100
    A3 i will have ='P&L Summary'!E100
    etc

    how do I do it?

    Thanks
    Chris

  2. #2
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Increment letter on different sheet

    You will need to create a custom list

    A
    B
    C
    D
    etc

    Then create a list of letters in a helper column, for example in column B. Start with the entry "A" (without the quotes), and drag the fill handle down, to increment the letters. Next, use a formula like

    =Indirect("'P&L Summary'!"&B1&"100")

    As an alternative, use

    =Index('P&L Summary'!$A$100:$Z$100,1,row(A1))

    and copy down. The row(A1) will return a 1 (=equals the first column in the range). Copied down, it will be row(A2) returning 2 (= the second column in the range)

    The Index version is faster than the Indirect and with less overhead.

    and copy down.
    Last edited by teylyn; 09-22-2010 at 07:29 AM.

  3. #3
    Registered User
    Join Date
    10-12-2007
    Posts
    36

    Re: Increment letter on different sheet

    thank you so much!

+ 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