+ Reply to Thread
Results 1 to 7 of 7

comparing cells - how?

Hybrid View

  1. #1
    Nooby
    Guest

    comparing cells - how?

    I need to compare two cells and color them if different, but not
    compare spaces.
    I've tried the following:

    Conditional formating:
    =B10<>C10 // But it compares spaces

    Formula:
    =IF(C10<>B10,"","Different") // But it will compare spaces and I don't
    know how to make it color fill C10 & B10

    =exact(C10,B10) // But it will compare spaces and I don't know how to
    make it color fill C10 & B10 when false

    I'm afraid I am way over my head in this. Is there a way to move the
    contents of a cell to a buffer,
    remove spaces, make it all the same case, then compare to another?
    Does anyone have a macro that already does this?

    Any help at all would be greatly appreciated before I pull out the few
    brown hairs I have left!!


  2. #2
    Ardus Petus
    Guest

    Re: comparing cells - how?

    =AND(C10<>"",B10<>"",C10<>B10)

    HTH
    --
    AP

    "Nooby" <stwilson@writeme.com> a écrit dans le message de news:
    1148049738.653541.163560@j73g2000cwa.googlegroups.com...
    >I need to compare two cells and color them if different, but not
    > compare spaces.
    > I've tried the following:
    >
    > Conditional formating:
    > =B10<>C10 // But it compares spaces
    >
    > Formula:
    > =IF(C10<>B10,"","Different") // But it will compare spaces and I don't
    > know how to make it color fill C10 & B10
    >
    > =exact(C10,B10) // But it will compare spaces and I don't know how to
    > make it color fill C10 & B10 when false
    >
    > I'm afraid I am way over my head in this. Is there a way to move the
    > contents of a cell to a buffer,
    > remove spaces, make it all the same case, then compare to another?
    > Does anyone have a macro that already does this?
    >
    > Any help at all would be greatly appreciated before I pull out the few
    > brown hairs I have left!!
    >




  3. #3
    Nooby
    Guest

    Re: comparing cells - how?

    I appreciate your help, and it adds to my limited knowledge, but that
    formula still does not ignore spaces.
    I need the following to be equal: "word" and "wo rd" and "WORD" and
    "word"
    but not "word" and "wordx"
    I added your formula to the conditional formatting.That is where it
    goes, right? Maybe it just needs tweaking?


  4. #4
    Ardus Petus
    Guest

    Re: comparing cells - how?

    =SUBSTITUTE(B10," ","")<>SUBSTITUTE(C10," ","")

    HTH
    --
    AP

    "Nooby" <stwilson@writeme.com> a écrit dans le message de news:
    1148051625.329340.29600@y43g2000cwc.googlegroups.com...
    >I appreciate your help, and it adds to my limited knowledge, but that
    > formula still does not ignore spaces.
    > I need the following to be equal: "word" and "wo rd" and "WORD" and
    > "word"
    > but not "word" and "wordx"
    > I added your formula to the conditional formatting.That is where it
    > goes, right? Maybe it just needs tweaking?
    >




  5. #5
    Nooby
    Guest

    Re: comparing cells - how?

    OK. how? Do I add the substitue as formula 1 and the AND as formula 2
    to conditional formatting?


  6. #6
    Ardus Petus
    Guest

    Re: comparing cells - how?

    No, you enter the following formula as formula 1
    =SUBSTITUTE(B10," ","")<>SUBSTITUTE(C10," ","")

    If true (B1=C1, skipping spaces) the formatting takes place


    "Nooby" <stwilson@writeme.com> a écrit dans le message de news:
    1148052899.859437.249540@i40g2000cwc.googlegroups.com...
    > OK. how? Do I add the substitue as formula 1 and the AND as formula 2
    > to conditional formatting?
    >




+ 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