+ Reply to Thread
Results 1 to 3 of 3

Difference between Cells

  1. #1
    Jim
    Guest

    Difference between Cells

    I would like to calculate the difference between two cells. For example:

    A B C
    Amy J Hespen Amy Hespen Amy Hespen
    Andrew Fries Andrew Fries

    In C I would like for the B name to appear if it is different from A. If
    the name in B is the same as in A, then I would like for the C cell to remain
    blank.

    Any help and thanks


  2. #2
    Registered User
    Join Date
    01-24-2005
    Posts
    63
    Is this what you want?

    Let say you have data in A1 and B1. In C1 write this formula
    =IF(A1=B1,"",B1)

    This formula means, if you have A1=B1 then write blank. If A1 not B1 then write B1 to the C1.

  3. #3
    Mladen_Dj
    Guest

    Re: Difference between Cells

    Use IF formula vith EXACT function:

    =IF(EXACT(A1,B1),"",B1)

    "Jim" <[email protected]> wrote in message
    news:[email protected]...
    >I would like to calculate the difference between two cells. For example:
    >
    > A B C
    > Amy J Hespen Amy Hespen Amy Hespen
    > Andrew Fries Andrew Fries
    >
    > In C I would like for the B name to appear if it is different from A. If
    > the name in B is the same as in A, then I would like for the C cell to
    > remain
    > blank.
    >
    > Any help and thanks
    >




+ 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