Comparing cells with text

  • Thread starter Thread starter Mortir
  • Start date Start date
M

Mortir

i have the following case:

A B
1 EUR USD
2 EUR EUR
3 EUR CHF

I'd like to compare the two colums and if the two cels in one row
match, i would get a TRUE answer and if not it would be false - as the
following example:

A B C
1 EUR USD FALSE
2 EUR EUR TRUE
3 EUR CHF FALSE

how do I do that?

thanx for your help!
 
And that can be simplified to =(B1=A1)

Note, however, that Dave's formula is returning TRUE and FALSE as text
strings. If you want logicals, remove the quote marks. My simplified
version returns a logical result.
 
Back
Top