+ Reply to Thread
Results 1 to 2 of 2

Copy Cells - Thanks

  1. #1
    Registered User
    Join Date
    05-06-2005
    Posts
    3

    Cool Copy Cells - Thanks

    I am trying to copy the values at every 14th cell such as A14, A28, A42...and paste the values on another worksheet in conseq. order.

    Any suggestions?

    Thanks in advance.

  2. #2
    Forum Contributor
    Join Date
    01-26-2005
    Posts
    108
    How about flagging all the rows/cells to be copied from your original sheet to indicate that they are on a row that is a multiple of 14.

    Something like ...
    =IF(CELL("row",A1)/14 = INT(CELL("row",A1)/14),1,0)
    ... where A1 is the cell you wish to copy.

    Then copy the whole lot onto your target sheet, sort them on the newly created "marker" and everything that WAS on a row that was a multiple of 14 is now together.

    If you need to retain the original sequence, add another marker indicating the original row (from your source sheet) ...
    =CELL("row",A1)
    ... and then sort on the "14 marker" and then the "original row" marker.

    Not sure I have explained this too well - hope it is of help.
    Tony

+ 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