B
Ben
Access does not seem to have FIND function. I need to capture Last
Name + Comma + First 4 Characters of First name. In the Mid function
since last names are variable length, I need to determine the location
of the comma within the field, then capture from 1 to Comma plus 5
characters.
This works in Excel, and I updated Access to read as follows:
=MID([Name],1,FIND(",",[Name])+5)
Access does not like FIND though
Name + Comma + First 4 Characters of First name. In the Mid function
since last names are variable length, I need to determine the location
of the comma within the field, then capture from 1 to Comma plus 5
characters.
This works in Excel, and I updated Access to read as follows:
=MID([Name],1,FIND(",",[Name])+5)
Access does not like FIND though