I ivanteo Registered User. Local time Today, 07:53 Joined Mar 5, 2002 Messages 31 Apr 2, 2002 #1 i have a [field] which stores data made up of 8 digit numbers. i want to get only the first 5 digits from this number. anybody? any help would be greatly appreciated!
i have a [field] which stores data made up of 8 digit numbers. i want to get only the first 5 digits from this number. anybody? any help would be greatly appreciated!
G Geoff Codd Registered User. Local time Today, 07:53 Joined Mar 6, 2002 Messages 190 Apr 2, 2002 #2 should be something like this = Left([FieldName],5)
A anna the third Registered User. Local time Today, 07:53 Joined Sep 17, 2001 Messages 14 Apr 2, 2002 #3 If you use VBA it is = Left([FieldName],5) If you use the expression builder = Left([FieldName];5) A little access annoyance!!!! anna
If you use VBA it is = Left([FieldName],5) If you use the expression builder = Left([FieldName];5) A little access annoyance!!!! anna
I ivanteo Registered User. Local time Today, 07:53 Joined Mar 5, 2002 Messages 31 Apr 10, 2002 #4 Thank you so much! it really was a big help!