I have data in a field that looks like this: E-221 RATE OR E-32 RATE. I need to get rid of all the text. I tried variations of this: UPDATE [APS Import Test] SET [APS Import Test].[Rate Code] = Right([Rate Code],5)=""
WHERE ((([APS Import Test].[Rate Code]) Like "*RATE*")); but I keep getting just 0s. Any ideas how to get rid of the word RATE and the E-?
WHERE ((([APS Import Test].[Rate Code]) Like "*RATE*")); but I keep getting just 0s. Any ideas how to get rid of the word RATE and the E-?