+ Reply to Thread
Results 1 to 5 of 5

Cell referencing in different worksheets

  1. #1
    Registered User
    Join Date
    04-10-2005
    Posts
    9

    Cell referencing in different worksheets

    Hi all,

    how can I reference to cells in different sheets in a workbook. Assuming a user enters a new data in worksheet 1, then the sum is computed and displayed in worksheet 2 and 3.

    Any help will be appreciated. Thanks in advance

    j2dizzo

  2. #2
    Forum Expert
    Join Date
    12-24-2004
    Location
    Sweden
    Posts
    1,256
    Two ways:

    Either you just write the sheet name, a ! an the cell reference.
    Example: =Sheet2!I5

    Or you just type a = then go to sheet and click on the cell you want to reference. Excel will build the same formula, automatically.

    Ola

  3. #3
    Registered User
    Join Date
    04-10-2005
    Posts
    9
    Thanks Olasa. I now get it

  4. #4
    Registered User
    Join Date
    04-10-2005
    Posts
    9
    Does someone maybe know why this formula is not working

    =COUNTIF(AND('sheet1'!B:B;"Newspaper",'sheet1'!F:F;"Male"))

    Thanx

  5. #5
    Forum Expert
    Join Date
    12-24-2004
    Location
    Sweden
    Posts
    1,256
    Here are two solutions that work:

    =SUMPRODUCT((Sheet1!B:B="Newspaper")*(Sheet1!F:F="Male"))
    =SUMPRODUCT(--(B:B&F:F="NewspaperMale"))

    Ola Sandström


    Note:
    -- will convert all TRUE to 1 and all FALSE to 0
    Your suggestion will not work due to:
    1) AND does not work with Arrays
    2) and if AND had worked, all your ; should be =

+ 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