+ Reply to Thread
Results 1 to 4 of 4

Copy answer to another worksheet

  1. #1
    mjohnson0321
    Guest

    Copy answer to another worksheet

    I would like to create a workbook of several worksheets that sum different
    things and have one worksheet that displays all of the totals.

    I.e: Have Worksheet A, Worksheet B, Worksheet C each calculate totals and
    then have the totals carried over to Worksheet D.

    How would I do this?

  2. #2
    Bill Kuunders
    Guest

    Re: Copy answer to another worksheet

    click onto the cell in D where you want the total from A to show. enter =
    and go to the cell on A and click onto the cell with the total. press enter
    .............done one.........etc

    Regards
    Bill K
    "mjohnson0321" <mjohnson0321@discussions.microsoft.com> wrote in message
    news:6B74EAEE-5D70-4AD4-90DF-55DF9A36D824@microsoft.com...
    >I would like to create a workbook of several worksheets that sum different
    > things and have one worksheet that displays all of the totals.
    >
    > I.e: Have Worksheet A, Worksheet B, Worksheet C each calculate totals and
    > then have the totals carried over to Worksheet D.
    >
    > How would I do this?




  3. #3
    IanRoy
    Guest

    RE: Copy answer to another worksheet

    Hi, mjohnson0321;

    Select a cell cell on Worksheet D where you want a total from Worksheet A to
    appear, type =, switch to Worksheet A, select the cell containing the total
    you want, and click the green checkmark in the formula bar. You will be
    returned to Worksheet D, which will now hold a formula like ='Worksheet A'!A1
    which will repeat the contents of cell A1 in Worksheet A.

    Another way: select a cell in Worksheet A that contains a total, copy,
    switch to Worksheet D, right-click the cell you want to paste into, choose
    Paste Special> Paste Link. This will paste a formula like ='Worksheet A'!$A$1
    giving the same result only with an absolute cell reference rather than a
    relative one.

    Regards.
    IanRoy.


    "mjohnson0321" wrote:

    > I would like to create a workbook of several worksheets that sum different
    > things and have one worksheet that displays all of the totals.
    >
    > I.e: Have Worksheet A, Worksheet B, Worksheet C each calculate totals and
    > then have the totals carried over to Worksheet D.
    >
    > How would I do this?


  4. #4
    swisse
    Guest

    RE: Copy answer to another worksheet

    Let's say I would want to copy the total from WorksheetA which is in A10 to
    WorksheetD in A10, the total from WorksheetB in B10 to WorksheetD in B10, and
    the total from WorksheetC in C10 to WorksheetD in C10. I would write the
    formula in
    1. WorksheetD A10 as =IF(ISBLANK(+WorksheetA!A10);"";+WorksheetA!A10)
    2. WorksheetD B10 as =IF(ISBLANK(+WorksheetB!B10);"";+WorksheetB!B10)
    3. WorksheetD C10 as =IF(ISBLANK(+WorksheetC!C10);"";+WorksheetC!C10)
    The formula makes sure that if the total is blank there will be no zero
    appearing in the corresponding cell in WorksheetD, otherwise it copies the
    totals to the corresponding cells.

    Swisse

+ 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