Apr 15, 2003 #1 tonyfitz Technical User Joined Mar 25, 2003 Messages 13 Location IE Hi How do I write an "if then" statement where two conditions must exst at the same time for one function to be carried out: if a=1 and b=2 then carry out some function Thanks Tony
Hi How do I write an "if then" statement where two conditions must exst at the same time for one function to be carried out: if a=1 and b=2 then carry out some function Thanks Tony
Apr 15, 2003 #2 Digga Programmer Joined May 11, 2001 Messages 84 Location GB Hi Tony, exactly that.... if a=1 and b=2 then carry out some function IF ((a = 1) AND (b = 2)) then do this END IF Digga Sharing Knowledge Saves Valuable Time! Upvote 0 Downvote
Hi Tony, exactly that.... if a=1 and b=2 then carry out some function IF ((a = 1) AND (b = 2)) then do this END IF Digga Sharing Knowledge Saves Valuable Time!
Apr 15, 2003 Thread starter #3 tonyfitz Technical User Joined Mar 25, 2003 Messages 13 Location IE Works perfectly Thanks Digga Tony Upvote 0 Downvote