This is a basic question.
I want to pull out some substrings and load two new fields. I get my values from:
SELECT Interface_List.ID,
Interface_List.Identifier,
InStr(1,[Identifier],'_') AS Len1,
Mid([Identifier],1,([Len1]-1)) AS T1,
Len([Identifier]) AS LenId...