Is there a way to use a wild card (or STARTS WITH) in an if/then comparison? What I would like to do is have something like this:
If strProdSched <> "No New *" And strProdSched <> "Scheduled *" And strProdSched <> "" Then
There are varying text strings after "Scheduled..." within a specified field. Is there STARTS WITH with functionality in MS Access VBA?
If strProdSched <> "No New *" And strProdSched <> "Scheduled *" And strProdSched <> "" Then
There are varying text strings after "Scheduled..." within a specified field. Is there STARTS WITH with functionality in MS Access VBA?