Excel Formula help

Closed
JT - Nov 8, 2010 at 02:34 PM
 RayH - Nov 8, 2010 at 03:40 PM
Hello,

I'm trying to create an excel formula to say the following, but can't seem to figure out how to write this formula out.

IF ((A*B)<35000, then sum), IF ((A*B>35000), then 35000)

Does anybody have any advice on this?

Thanks,
JT

1 response

What is A and B? Are these cells? e.g. A1 and B1
What are you SUMmming? A range? e.g. A2:F2


=if(A1*B1<35000,sum(A2:F2),35000)
0