View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips[_3_] Bob Phillips[_3_] is offline
external usenet poster
 
Posts: 2,420
Default Mulitple if function

=IF(C9="ok",IF(H11=12,H11,"bad"),IF(H11=9,H11,"b ad"))

--
__________________________________
HTH

Bob

wrote in message
...
Hi
I have this problem
I have many conditions for if function
In C9 I have either “ok” or “not ok, if it is “ok” the cell h11 that
should be equal or greater than either 12, and if “not ok” the cell
h11 should be equal or greater than 9
I used (if) function and (and) function to check that if c9 is ok and
h11 is equal or greater than 12, then the result should be either =h11
or “bad”, but I can use if function to check if it is “not ok” and h11
equal or greater than 9, in the same formulae, is that possible to use
2 if functions in one formulae? Any help
if(and(C9="not
ok";and('H11=9;H11;if(and(C9="ok";and(H11=12;H11 ;"bad")))))
The message is too many arguments
Thanks in advance
Jam