This should be an easy one, I guess

ColdGeorge

Active Member
Joined
Aug 21, 2012
Messages
407
Office Version
  1. 2016
Platform
  1. Windows
Hi all

I am looking for an easy -and working- formula to tell me when A1, B1 and C1 values are the same, after a search for help on the Internet I feel very confused, thanks in advance for your help.

ColdGeorge
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Try;
Code:
=IF(AND(A1=B1,A1=C1),"yes","no")

Thanks for answering Robby19, unfortunately, it does not work, when I enter same values your formula still says no (not the same).

ColdGeorge
 
Upvote 0
Just another option....


Excel 2010
ABCDE
1a1b1a1No
2a2a2a2Yes
Sheet2
Cell Formulas
RangeFormula
E1{=IF(AND(EXACT(A1:C1,A1)),"Yes","No")}
E2{=IF(AND(EXACT(A2:C2,A2)),"Yes","No")}
Press CTRL+SHIFT+ENTER to enter array formulas.


By the way the formula from Robbie19 works for me. Are you sure that your data is an exact match including no leading or trailing spaces?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,786
Messages
6,121,553
Members
449,038
Latest member
Guest1337

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top