Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to cancel out the then part of an if/then but not change anything else.
I want it to do "nothing" instead of what it is doing. I tried commenting out the then part and I got a run time error so I just want it to exit the then portion and keep running. if xxxxxx then "do nothing" thanks, |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can you please post a little bit of the code you're having trouble
with? Sounds like a logical error... Janis wrote: I want to cancel out the then part of an if/then but not change anything else. I want it to do "nothing" instead of what it is doing. I tried commenting out the then part and I got a run time error so I just want it to exit the then portion and keep running. if xxxxxx then "do nothing" thanks, |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You will have to comment out every line between "If..Then" and "End If".
Alternatively, if its a huge block of code, cut the entire "If..Then" to "End If" structure out and paste somewhere to save it (like Notepad, for instance). You can always copy and paste it back in later. -- Les Torchia-Wells "Janis" wrote: I want to cancel out the then part of an if/then but not change anything else. I want it to do "nothing" instead of what it is doing. I tried commenting out the then part and I got a run time error so I just want it to exit the then portion and keep running. if xxxxxx then "do nothing" thanks, |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Are you saying that you want the execution of the code to continue if the
argument is True? What do you want to happen if the argument is False? HTH Otto "Janis" wrote in message ... I want to cancel out the then part of an if/then but not change anything else. I want it to do "nothing" instead of what it is doing. I tried commenting out the then part and I got a run time error so I just want it to exit the then portion and keep running. if xxxxxx then "do nothing" thanks, |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The problem as I can see is in the syntax: 'Then "keyword should be on If
line If xxxxx then yyyy zzzz else YyYyY ZzZzZ End If I think cancelling that you want, involves just putting apostrophies like this ' in fron of yyyy and zzz above. Or in a brand new code you can do: If a 0 then else YyYyY ZzZzZ End If PS. Some code uses syntax that places command right after Then, like this: If a 0 then P=4 no End If, no Else In such case just modify syntax to have end if and you're done. HTH Paul Użytkownik "Janis" napisał w wiadomo¶ci ... I want to cancel out the then part of an if/then but not change anything else. I want it to do "nothing" instead of what it is doing. I tried commenting out the then part and I got a run time error so I just want it to exit the then portion and keep running. if xxxxxx then "do nothing" thanks, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to have a macro simply issue the "find" command or "control f: | Excel Programming | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
embedding "ISERROR" function into an "IF" statement | Excel Worksheet Functions | |||
inserting a conditional "go to" command on a excel "if" function | Excel Worksheet Functions | |||
Is there a "replace" or "Substitute" command in Excel's VB? | Excel Programming |