3 values, show which ones are same

A

AmyTaylor

Help with this would be greatly appreciated ! thank you ! xx

In cell B5, C5 & C6 I have 3 values which are all slightly different.
What I want to be able to say is that if you round them all up by
deciimal place, are they all the same, and if not display a result:

for example
B5 = 1300.12
C5 = 1300.1
D5 = 1300.313

The result will be, if all the same "all correct", if only B5 i
correct then "B5 correct", if only C5 is correct then "C5 correct", i
only D5 correct then "D5 correct". If B5 and C5 correct then "D
different", if only B5 and D5 correct then "C5 different" and if C5 an
D5 correct then "B5 different".

Hope this is intelligible. Please let me know if you need furthe
details.
Thanks Amy xx
 
B

Bruno Campanini

AmyTaylor said:
Help with this would be greatly appreciated ! thank you ! xx

In cell B5, C5 & C6 I have 3 values which are all slightly different.
What I want to be able to say is that if you round them all up by 1
deciimal place, are they all the same, and if not display a result:

for example
B5 = 1300.12
C5 = 1300.1
D5 = 1300.313

The result will be, if all the same "all correct", if only B5 is
correct then "B5 correct", if only C5 is correct then "C5 correct", if
only D5 correct then "D5 correct". If B5 and C5 correct then "D5
different", if only B5 and D5 correct then "C5 different" and if C5 and
D5 correct then "B5 different".

Hope this is intelligible. Please let me know if you need further
details.
Thanks Amy xxx

=IF(ROUND(B5,1)=B5,ADDRESS(ROW(B5),
COLUMN(B5),4)&" Correct",ADDRESS(ROW(B5),
COLUMN(B5,4)&" Not Correct")

Ciao
Bruno
 
B

Bruno Campanini

=IF(ROUND(B5,1)=B5,ADDRESS(ROW(B5),
COLUMN(B5),4)&" Correct",ADDRESS(ROW(B5),
COLUMN(B5,4)&" Not Correct")

Ciao
Bruno

Sorry, I misundestood the question.

Bruno
 
G

Guest

You need to specify the criteria for "correctness" - On what basis do you
determine, in your example above, that "only" one is correct?
--
Ted


AmyTaylor said:
... if only B5 is
correct then "B5 correct", if only C5 is correct then "C5 correct", if
only D5 correct then "D5 correct". >

You need to specify the criteria for "correctness" - On what basis do you
determine, in your example above, that "only" one is correct?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top