Mar 13, 2003 #1 kinselas IS-IT--Management Joined Aug 4, 2002 Messages 60 Location AU I HAVE THIS FORMULA...BUT I WOULD LIKE TO ADD THE MANDATORY CELLS...G9 AND K9 AND O9 >1 PLEASE HELP WITH THE SYNTAX =IF(D9>1,"OK TO PRINT","ALL MANDATORY CELLS HAVE NOT BEEN M66"
I HAVE THIS FORMULA...BUT I WOULD LIKE TO ADD THE MANDATORY CELLS...G9 AND K9 AND O9 >1 PLEASE HELP WITH THE SYNTAX =IF(D9>1,"OK TO PRINT","ALL MANDATORY CELLS HAVE NOT BEEN M66"
Mar 13, 2003 #2 Zathras Programmer Joined Nov 12, 2002 Messages 3,317 Location US It looks like you have text in M66 that you want appended as part of the message, so the end formula looks something like this: Code: =IF( Code: AND(D9>1,G9>1,K9>1,O9>1) Code: ,"OK TO PRINT","ALL MANDATORY CELLS HAVE NOT BEEN " Code: &M66 Code: ) Upvote 0 Downvote
It looks like you have text in M66 that you want appended as part of the message, so the end formula looks something like this: Code: =IF( Code: AND(D9>1,G9>1,K9>1,O9>1) Code: ,"OK TO PRINT","ALL MANDATORY CELLS HAVE NOT BEEN " Code: &M66 Code: )
Mar 13, 2003 #3 PeterMoran MIS Joined Jun 5, 2002 Messages 417 Location AU Hi kinselas, Try this, if I understand correctly: =IF(AND(D9>1,G9>1,K9>1,O9>1),"OK TO PRINT","ALL MANDATORY CELLS HAVE NOT BEEN M66" This requires all cells to have values > 1, if anyone will do then change the AND to OR. Good Luck! Peter Moran Two heads are always better than one! Upvote 0 Downvote
Hi kinselas, Try this, if I understand correctly: =IF(AND(D9>1,G9>1,K9>1,O9>1),"OK TO PRINT","ALL MANDATORY CELLS HAVE NOT BEEN M66" This requires all cells to have values > 1, if anyone will do then change the AND to OR. Good Luck! Peter Moran Two heads are always better than one!
Mar 16, 2003 Thread starter #4 kinselas IS-IT--Management Joined Aug 4, 2002 Messages 60 Location AU Zathras & Peter Thanks for your help Upvote 0 Downvote