+ Reply to Thread
Results 1 to 7 of 7

Incremental cell block (A1+2 = A3.....is it possible ???)

  1. #1
    Registered User
    Join Date
    10-29-2012
    Location
    Jakarta, Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    3

    Question Incremental cell block (A1+2 = A3.....is it possible ???)

    For example, I have a data like this :

    A B C
    1 Brad Judith A1+2=A3
    2 Emile Carmen A3+2=A5
    3 Judith Agustine A5+2=A7
    4 Philip Chris A7+2=A9
    5 Carmen
    6 Mark
    7 Agustine
    8 Mike
    9 Chris
    10 Merry


    The result supposed to be like in column B (I wrote the formula like in column C, but it give me #VALUE)
    Because the data is so many, It take hours to do manually.... is there a way ?

    Any suggestion ?

    Many thanks !
    Attached Images Attached Images
    Last edited by tanangc; 10-29-2012 at 08:56 AM.

  2. #2
    Forum Contributor Dave H9's Avatar
    Join Date
    03-10-2011
    Location
    Manchester, England
    MS-Off Ver
    Excel 2007
    Posts
    418

    Re: Incremental cell block (A1+2 = A3.....is it possible ???)

    Not sure I understand your logic. Are you trying to add names?

    Taking your formula in C1 "Brad" + 2 = "Judith". Can you post an example sheet clearly showing your desired solution.

    Thanks

    Dave H
    - Mark your post [SOLVED] if it has been answered satisfactorily, by editing your original post using advanced mode.
    - Thank those that provided useful help, its nice and its very well appreciated...use the star on the lower left of the post

  3. #3
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,147

    Re: Incremental cell block (A1+2 = A3.....is it possible ???)

    hi tanangc, welcome to the forum. try:
    =INDIRECT("a"&3+(ROW()-1)*2)

    Thanks, if you have clicked on the * and added our rep.

    If you're satisfied with the answer, click Thread Tools above your first post, select "Mark your thread as Solved".

    "Contentment is not the fulfillment of what you want, but the realization of what you already have."


    Tips & Tutorials I Compiled | How to Get Quick & Good Answers

  4. #4
    Registered User
    Join Date
    10-29-2012
    Location
    Jakarta, Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: Incremental cell block (A1+2 = A3.....is it possible ???)

    Wow that was fast !

    Quote Originally Posted by Dave H9 View Post
    Not sure I understand your logic. Are you trying to add names?

    Taking your formula in C1 "Brad" + 2 = "Judith". Can you post an example sheet clearly showing your desired solution.

    Thanks

    Dave H
    To Dave : No, I'm not adding names. But I was trying to display A3 in B1, A5 in B2, A7 in B3 and so on....


    Quote Originally Posted by benishiryo View Post
    hi tanangc, welcome to the forum. try:
    =INDIRECT("a"&3+(ROW()-1)*2)
    To Benishiryo : Your formula seems to work can you explain please...Thxs

  5. #5
    Forum Contributor Dave H9's Avatar
    Join Date
    03-10-2011
    Location
    Manchester, England
    MS-Off Ver
    Excel 2007
    Posts
    418

    Re: Incremental cell block (A1+2 = A3.....is it possible ???)

    Sure, I realised when Benishiryo posted the solution.

    Good luck

    Dave H

  6. #6
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,147

    Re: Incremental cell block (A1+2 = A3.....is it possible ???)

    you cannot do a direct sum of "A1+2" because Excel will take the value of A1 plus a value of 2. so i used the INDIRECT formula to have a calculation inside. the calculation is basically:
    the alphabet "A" & to join with an amount of 3+(ROW()-1)*2
    ROW() will give the row number of that particular row. ROW() in A1 returns 1. ROW() in A2 returns 2. ROW() in B1 & B2 returns the same results, 1 & 2 respectively.
    so the final result for A1 is 3+(1-1)*2=3
    A2 will be 3+(2-1)*2=5

    joined with the alphabet "A" will be A3, A5 respectively. hope that helps

  7. #7
    Registered User
    Join Date
    10-29-2012
    Location
    Jakarta, Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: Incremental cell block (A1+2 = A3.....is it possible ???)

    thanks for the help

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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