ThunderGeek
Technical User
I am writing an Access 2003 query and having trouble parsing a string.
Example of the string - This is my string, it has two commas, and a number 1234. -
I need to remove the string section from the left side, up to but not including the comma.
Here is what I am using in my query, string is the "string" pulled from a table:
String: string
Count: Len([string])
Comma: InStr([string],",")
RemoveToComma: Left([string],[comma])
The strings are random length.
Any help is appreciated.
Example of the string - This is my string, it has two commas, and a number 1234. -
I need to remove the string section from the left side, up to but not including the comma.
Here is what I am using in my query, string is the "string" pulled from a table:
String: string
Count: Len([string])
Comma: InStr([string],",")
RemoveToComma: Left([string],[comma])
The strings are random length.
Any help is appreciated.