+ Reply to Thread
Results 1 to 3 of 3

How bring over result to sheet 2

  1. #1
    Registered User
    Join Date
    11-12-2005
    Posts
    6

    Red face How bring over result to sheet 2

    Hi,

    In sheet 1 i have sum calculations, and the result are in list A1 till A50

    Now after every new calculation they change and i want them to bring over to sheet 2 in (a1 till a50) and from there i can make a other list with the resuts..

    But i don't find a simple trick to do it ...(excel 2000)
    Greetz..

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,258
    Hello Jacko,

    Link the cells on Sheet2 A1:A50 to the same cells on Sheet1.

    Linking Cells using a Formula:

    On Sheet2
    A1 =Sheet1!A1
    A2 =Sheet1!A2
    A3 =Sheet1!A3
    etc.

    At this point drag fill the cells to A50.

    Sincerely,
    Leith Ross

  3. #3
    Nick Hodge
    Guest

    Re: How bring over result to sheet 2

    Jacko

    How about

    Sub CopyValToSheet2()
    Worksheets("Sheet1").Range("A1:A50").Copy
    Worksheets("Sheet2").Range("A1:A50").PasteSpecial Paste:=xlValues
    Application.CutCopyMode = False
    End Sub


    --
    HTH
    Nick Hodge
    Microsoft MVP - Excel
    Southampton, England
    www.nickhodge.co.uk
    [email protected]HIS


    "Jacko" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi,
    >
    > In sheet 1 i have sum calculations, and the result are in list A1 till
    > A50
    >
    > Now after every new calculation they change and i want them to bring
    > over to sheet 2 in (a1 till a50) and from there i can make a other list
    > with the resuts..
    >
    > But i don't find a simple trick to do it ...(excel 2000)
    > Greetz..
    >
    >
    > --
    > Jacko
    > ------------------------------------------------------------------------
    > Jacko's Profile:
    > http://www.excelforum.com/member.php...o&userid=28762
    > View this thread: http://www.excelforum.com/showthread...hreadid=484633
    >




+ 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