Luddite Lad
Registered User.
- Local time
- Today, 19:36
- Joined
- Aug 23, 2005
- Messages
- 177
I have an update query that creates a reference.
part of the update is the following code
Which works fine. What I'm wondering is if there is a way to ignore any spaces that might be in the first three characters. So in other words simply pick up the first three alpha numerics?
part of the update is the following code
Code:
(Left([clientname],Len([clientname])-(Len([clientname])-3)))
Which works fine. What I'm wondering is if there is a way to ignore any spaces that might be in the first three characters. So in other words simply pick up the first three alpha numerics?