Forum Discussion
CaptMitch
Mar 08, 2022Copper Contributor
SQL Mid() Synax
So I am helping a friend and client who self-publishes data from an Access database. I have an amateur background in programming and have been able to handle many things for him but am by no means a...
- Mar 08, 2022You have an extra parenthesis in your InStr formula.
The second clause of your Mid formula should be:
InStr([Biography],"Translator: ") +12,
So, altogether:
UPDATE [Armenian Titles] SET [Translator] = Mid([Biography], InStr([Biography],"Translator: ")+12, 40);
WHERE InStr([Biography],"Translator: ") >1
George_Hepworth
Mar 08, 2022Silver Contributor
If it is true that "Using a straight SET...="Text" works fine", what problem remains to be solved?