View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Ron Coderre Ron Coderre is offline
external usenet poster
 
Posts: 2,118
Default Using "If" combined with "AND" statements

You're actually pretty close...

Try this:
=IF(AND(G30,G3<251),G3*1.2,0)

or...another variation:
=AND(G30,G3<251)*(G3*1.2)

Does that help?
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)

"Roger Bell" wrote in message
...
I am trying to enter a formula as below, but it is not accepted.

=IF(G30 'AND' g3<251,G3*1.2,0)

Can anyone help with where I am going wrong. With Thanks.