M mariomenc New Member Joined Aug 25, 2005 Messages 26 Nov 21, 2005 #1 I'll like to know how to run a macro (lets call it macro1) if cell A1=B1 and run macro2 if A1<>B1 is this possible? thanks
I'll like to know how to run a macro (lets call it macro1) if cell A1=B1 and run macro2 if A1<>B1 is this possible? thanks
iggydarsa Well-known Member Joined Jun 28, 2005 Messages 1,647 Nov 21, 2005 #2 Code: If Range("A1").Value=Range("B1").Value Then Macro1 Else Macro2 End If