chris-uk-lad
Registered User.
- Local time
- Yesterday, 21:35
- Joined
- Jul 8, 2008
- Messages
- 271
Sorry if this is general knowledge, i cant find a suitable answer for me.
I need an if statement with 2 clauses before moving on, like this
but know this to be incorrect syntax, i believe it would work with a
but imo would be bad practice.
Any tips? Thanks
I need an if statement with 2 clauses before moving on, like this
Code:
If searching_ws.Name <> "STAT" Or searching_ws.Name <> "BASIC" Then
but know this to be incorrect syntax, i believe it would work with a
Code:
If searching_ws.Name <> "STAT" Then
If searching_ws.Name <> "BASIC" Then
but imo would be bad practice.
Any tips? Thanks