Function Problem

S

Scp

Well, I'll start it to what I have so far, but I need one last improvement to
the formula to make it true, and I keep getting errors.

=IF(A14*G14<0.5,L14,(A14*G14))

I want it to multiply A x G
if the sum is less then .5 then to carry over the number from L
BUT if it's less than .5 but greater than L then to multiply it out

Thank You
 
L

Luke M

I think this is what you wanted...

If A*G <0.5: If A*G>L, then display L, else display A*G

=IF(A14*G14<0.5,IF(A14*G14>L14,A14*G14,L14),"")

What happens if A14*G14 is greater than 0.5?
 
S

Scp

Now I see why you asked that. Okay, there's a problem, but now I know why
you asked that at the end. I want it to multiply like normal if it's over .5

Hope this helps to figure out my problem. This formula is correct except
for if it's over .5, it's giving me a blank there.
 
L

Luke M

So really, only display L if A*G <0.5 AND A*G > L?
=IF(AND(A14*G14<0.5,A14*G14>L14),L14,A14*G14)
 

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