I would like to use a case statement to change the row source in a form. The row source would change depending on a variable that can also change.
if the variable contains the words "Wild Group" then the row source would change, if it didn't then it would be something else.
I tried an If statement but it didn't like the Like "*Wild Group*"
Any help would be appreciated.
Thanks
if the variable contains the words "Wild Group" then the row source would change, if it didn't then it would be something else.
I tried an If statement but it didn't like the Like "*Wild Group*"
Code:
If VWGName like "*Wild Group*" then
Thanks
Comment