R
Ronald S. Cook
Can I write
If MyString = "Apple" Or MyString = "Orange" Or MyString = "Pear" Then
to something more compact like
If MyString In ("Apple", "Orange", "Pear") Then
My last line obviously doesn't work but maybe I'm close?
Thanks,
Ron
If MyString = "Apple" Or MyString = "Orange" Or MyString = "Pear" Then
to something more compact like
If MyString In ("Apple", "Orange", "Pear") Then
My last line obviously doesn't work but maybe I'm close?
Thanks,
Ron