+ Reply to Thread
Results 1 to 8 of 8

Pick values from one column and organize in another

Hybrid View

  1. #1
    Registered User
    Join Date
    03-31-2009
    Location
    Sweden
    MS-Off Ver
    Excel 2000
    Posts
    3

    Pick values from one column and organize in another

    Hello

    I have been struggling with this issue for some time and I think it is fairly easy to solve, but I have been unable to find the solution. I have a column of numbers and I want to copy numbers, with a constant periodicity, and paste in a new column. In the example below, I copy values from column A and past in column B, picking only every third value:

    A B
    1 1
    2 4
    3 7
    4 10
    5
    6
    7
    8
    9
    10

    Is there a smart way to do this? Thanks in advance!
    Last edited by jediguran; 04-03-2009 at 08:32 AM.

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Pick values from one column and organize in another

    One way:

    =IF(3*ROWS($A$1:A1)-1>ROW($A$10),"",INDEX($A$1:$A$10,3*(ROWS($A$1:A1)-1)+1))

    where 3 represents you pattern.. and A1:A10 contains all the range

    copied down
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    11-14-2008
    Location
    Nashua
    Posts
    19

    Re: Pick values from one column and organize in another

    This is definitely not the cleanest but....

    Sub EveryThree()



    Dim RowA As Integer
    Dim RowB As Integer
    Dim CellValue As Double
    Range("a1").Select
    ActiveCell.Offset(0, 1) = ActiveCell.Value
    RowA = 1
    RowB = 1

    Do Until IsEmpty(ActiveCell.Value)
    RowA = RowA + 3
    RowB = RowB + 1
    Range("a" & RowA).Select
    CellValue = ActiveCell.Value
    Range("b" & RowB).Select
    ActiveCell.Value = CellValue
    Range("a" & RowA).Select

    Loop

    Range("b" & RowB).Select
    Selection.Clear


    End Sub

  4. #4
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Pick values from one column and organize in another

    prescient,

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code. Posting code without them makes your code hard to read and difficult to be copied for testing. Highlight your code and click the # at the top of your post window. For more information about these and other tags, found here

  5. #5
    Registered User
    Join Date
    03-31-2009
    Location
    Sweden
    MS-Off Ver
    Excel 2000
    Posts
    3

    Re: Pick values from one column and organize in another

    Thanks for the quick reply!

    NBVC: I tried using the formula you posted but I get "The formula you typed contains an error", marking the INDEX function. Any idea why?

    /JG

  6. #6
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Pick values from one column and organize in another

    It may be the version of Excel you are on....

    Try:

    =IF(3*ROWS($A$1:A1)-1>ROW($A$10);"";INDEX($A$1:$A$10;3*(ROWS($A$1:A1)-1)+1))

  7. #7
    Registered User
    Join Date
    03-31-2009
    Location
    Sweden
    MS-Off Ver
    Excel 2000
    Posts
    3

    Re: Pick values from one column and organize in another

    Yey that did the trick! Thanks a bunch

    /JG

  8. #8
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Pick values from one column and organize in another

    Please mark your thread as Solved.

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

+ 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