A little help please :)

P

philly

Hello,

I'm a complete novice when it comes to spreadsheets, so go easy on m
please:) .
I'm doing a little project, but I need a little help.

What I'm trying to do is something like this:
=IF(B20>C20 AND D25>C25,A30,B30)

However, this doesn't work for whatever reason, is there any way I ca
make this work?

Thank's in advance, Phil
 
P

Peo Sjoblom

=IF(AND(B2>C2,D25>C25),A30,B30)

--
Regards,

Peo Sjoblom

(No private emails please)
 
R

Ron Coderre

This might be what you're looking for:
=IF(AND(B20>C20,D25>C25),A30,B30)

Does that help?

***********
Regards,
Ron
 
Top