if Error

J

John

I am trying to write an if function and there is a syntax error in the
formula. The outline of the formula is

If K14 is > 1, and if H14 is >6.49 then "** Check Pay Rate **"

if K14 is < 1, and if H14 is >7.21 then "** Check Pay Rate **"

Otherwise <blank>

My attempt is

=IF((K14>1,(IF(H14>6.49,"** Check Pay Rate **"),(IF(H14>7.21,"** Check Pay
Rate **))
 
E

ehntd

if(and(k14>1,h14>6.49);check pay rate;if(and(k14<1,h14>7.21);chec
rate;; ))

i think that should work for you
 
F

Frank Kabel

Hi
try:
=IF(AND(K14>1,H14>6.49),"** Check Pay Rate **",IF(AND(K14<1,H14>7.21),"**
Check Pay Rate **",""))
 
M

Max

One way ..

Try:

=IF(OR(AND(K14>1,H14>6.49),AND(K14<1,H14>7.21)),"** Check Pay Rate **","")
 

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