I have a variable (string) as below
DevelopmentStageSF1 - "Implementable, In Planning, Owned, Conditional/In Negotiation, Target"
I am using an 'if' query to determine which words are in this variable. However it is not really working.
Why does this pass the 'if' query.
If InStr(DevelopmentStageSF1, "Implementable") And InStr(DevelopmentStageSF1, "Owned") Then ...
And this does not...?
If InStr(DevelopmentStageSF1, "Implementable") And InStr(DevelopmentStageSF1, "Conditional") Then ...
Bookmarks