+ Reply to Thread
Results 1 to 7 of 7

Basic Question About Copying Cells

  1. #1
    Registered User
    Join Date
    02-18-2012
    Location
    beverly hills
    MS-Off Ver
    Excel 2010
    Posts
    4

    Basic Question About Copying Cells

    I've got a column of cell data with a mixture of different data types: dates, text, numbers, etc.

    I am interested in only every fifth field, which happens to be number. I'd like to be able to enter a formula into a cell which will copy the fifth entry into a new column. I've got a ton of stock data that I need to parse this way. So, for example if there are 1000 entries in the column, I would need to extract 1000/5 = 200 fields which would be copied into a new column with the 200 values.

    If you guys could explain how to do this, I'd be grateful thanks.

    -Angus

  2. #2
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,078

    Re: Basic Question About Copying Cells

    Use Text to columns and select the appropriate delimiter, e.g. space or comma etc
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

  3. #3
    Registered User
    Join Date
    02-18-2012
    Location
    beverly hills
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Basic Question About Copying Cells

    Thanks for reply Special-K. I probably should have said that each value is in its own cell, so there are no delimiters (that I'm aware of). Let me clarify. For example, if the column of data looked like this:

    A1: 4556
    A2: 2993
    A3: 3882
    A4: 2883
    A5: 8382
    A6: 2939
    A7: 2933
    A8: 5858
    A9: 2093
    A10: 5955

    I would need to be able to copy the data in A5 into B1 and the data in A10 into B2, and so on. I've got lots of data to crunch through. Any ideas?

  4. #4
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Basic Question About Copying Cells

    In B1.

    =A1+4

    In B2.

    =B1+5


    Copy down.
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  5. #5
    Registered User
    Join Date
    02-18-2012
    Location
    beverly hills
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Basic Question About Copying Cells

    A1+4 just adds 4 to the contents of A1. In my example that would be equal to 4560, instead of the correct answer which is the value in cell A5, 8382. I need a function that would address row A5, get the contents, and place them into B1.

    I am wondering if I have to jump into VBA to do the operation that I've described?

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

    Re: Basic Question About Copying Cells

    Assuming your data in A1:A1000
    In B1:
    Please Login or Register  to view this content.
    Copy down to B200
    Quang PT

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

    Re: Basic Question About Copying Cells

    In general, If you start from row n, try: INDEX(An:Ax,(ROW()-n+1)*5)

  8. #8
    Registered User
    Join Date
    02-12-2012
    Location
    india
    MS-Off Ver
    Excel 2003
    Posts
    8

    Re: Basic Question About Copying Cells

    try formula in b col, INDIRECT("a"&(ROW()*5))

    revert with result
    Click star icon of my post if my reply was of help

  9. #9
    Registered User
    Join Date
    02-12-2012
    Location
    india
    MS-Off Ver
    Excel 2003
    Posts
    8

    Re: Basic Question About Copying Cells

    try formula , INDIRECT("a"&(ROW()*5)), in B col

    revert with result

  10. #10
    Registered User
    Join Date
    02-18-2012
    Location
    beverly hills
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Basic Question About Copying Cells

    Thanks excelxlexcel and bebo021999. I used a modified version of your suggested INDEX function to get the correct values into the correct cells. Thx.

    angus---

+ 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