Return the text before a comma

jon98548

Registered User.
Local time
Today, 17:31
Joined
Feb 14, 2003
Messages
141
I have a description field that starts with a basic name of an item followed by a comma and the more descriptive text. I would like to return everything before the comma and truncate the rest. I can do this in Excel with:

=LEFT(A1,FIND(",",A1)-1)

but Access doesn't recognize Find. Thanks for any help you might have.
 
Try the InStr() function.
 

Users who are viewing this thread

Back
Top Bottom