+ Reply to Thread
Results 1 to 3 of 3

Copying Multiple Items

  1. #1
    Magnivy
    Guest

    Copying Multiple Items

    Greetings!

    Is it somehow possible to copy multiple items on one worksheet, separately,
    not as a group, and paste each item on another worksheet. For example, say
    cells A1:C1 contain x,y,and z. Is it possible to copy the three items
    separately, then go to Sheet2 and paste x in cell A5, y in cell B2, and z in
    cell F10 without returning to Sheet1 and recopying each item.

    I hope I explained it well. Please let me know if you have difficulty
    understanding my question.

    Any help on this would be greatly appreciated.

    Magnivy

  2. #2
    Registered User
    Join Date
    04-21-2006
    Posts
    61
    sure...

    just use the ranges to define variables for each...

    xval = Range("A1")
    yval = Range("B1")
    zval = Range("C1")
    Sheets("Sheet2").activate
    Range("A5") = xval
    Range("B2") = yval
    Range("F10") = zval

    Hope this helps

    Gareth

    Quote Originally Posted by Magnivy
    Greetings!

    Is it somehow possible to copy multiple items on one worksheet, separately,
    not as a group, and paste each item on another worksheet. For example, say
    cells A1:C1 contain x,y,and z. Is it possible to copy the three items
    separately, then go to Sheet2 and paste x in cell A5, y in cell B2, and z in
    cell F10 without returning to Sheet1 and recopying each item.

    I hope I explained it well. Please let me know if you have difficulty
    understanding my question.

    Any help on this would be greatly appreciated.

    Magnivy

  3. #3
    Magnivy
    Guest

    Re: Copying Multiple Items

    Got it! Thank you very much Gareth!

    "pianoman" wrote:

    >
    > sure...
    >
    > just use the ranges to define variables for each...
    >
    > xval = Range("A1")
    > yval = Range("B1")
    > zval = Range("C1")
    > Sheets("Sheet2").activate
    > Range("A5") = xval
    > Range("B2") = yval
    > Range("F10") = zval
    >
    > Hope this helps
    >
    > Gareth
    >
    > Magnivy Wrote:
    > > Greetings!
    > >
    > > Is it somehow possible to copy multiple items on one worksheet,
    > > separately,
    > > not as a group, and paste each item on another worksheet. For example,
    > > say
    > > cells A1:C1 contain x,y,and z. Is it possible to copy the three items
    > > separately, then go to Sheet2 and paste x in cell A5, y in cell B2, and
    > > z in
    > > cell F10 without returning to Sheet1 and recopying each item.
    > >
    > > I hope I explained it well. Please let me know if you have difficulty
    > > understanding my question.
    > >
    > > Any help on this would be greatly appreciated.
    > >
    > > Magnivy

    >
    >
    > --
    > pianoman
    > ------------------------------------------------------------------------
    > pianoman's Profile: http://www.excelforum.com/member.php...o&userid=33712
    > View this thread: http://www.excelforum.com/showthread...hreadid=548562
    >
    >


+ 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