Formula

M

MAX

I need a formula in cell C1 that when A1>A5 it appears the text in
cell A2 and when A1<A5 it appears the text in cell A4.

Thanks in advance
 
P

Pete_UK

Put this in C1:

=IF(A1=A5,"not defined",IF(A1>A5,A2,A4))

You didn't say what you want to happen if A1=A5.

Hope this helps.

Pete
 
E

Eduardo

Hi,
what happens in A2 if A1<A5??, I assume you want blank

in A2 enter
=if(A1>A5,"Your text","")

in A4 enter

=if(A1<A5,"Your text","")

if this helps please click yes thanks
 
M

MAX

In A2 I have the name Joe and in A4 I have the name Tony, so when A1>A5 I
want Joe in C1 and when A1<A5 I want Tony in C1.

Thanks.
 

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