Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In vba can you have an if ... then in the format if "x" or "y" then?
|
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Max,
You can write your code in a way similar to the following: If X = something Or Y = something_else Then ' do something Else ' do something else End If If both X and Y are boolean variables (or if they are numeric and you want to test whether either is not equal to zero), you can simplify the If statement to If X Or Y Then -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Max Bialystock" wrote in message ... In vba can you have an if ... then in the format if "x" or "y" then? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|