View Full Version : parsing


jlabre01
05-28-2008, 06:28 AM
Hi,
I just need to know how to parse to string/text format?

jlabre01

KenHigg
05-28-2008, 06:33 AM
In MS Access help look up the right() left() and mid() functions.

MSAccessRookie
05-28-2008, 06:41 AM
In MS Access help look up the right() left() and mid() functions.

If you are going to parse, then two more good functions to know would be InStr(Start, String1, String2) and Len(String)

KenHigg
05-28-2008, 06:46 AM
Forgot those - :)

boblarson
05-28-2008, 06:53 AM
If you are going to parse, then two more good functions to know would be InStr(Start, String1, String2) and Len(String)

I'll throw out one more good one to know:

InstrRev(StringToCheck As String, StringToMatch As String, Optional Start As Long, Optional Compare As VbCompareMethod)

jlabre01
05-28-2008, 06:58 AM
Thanks to all, I got it to work

jlabre01