jdawg_1989
Registered User.
- Local time
- Today, 17:46
- Joined
- Apr 8, 2011
- Messages
- 21
Hi All,
I currently have a field (Allocation) in access that contains information like the following
123456: 1/1/2/1
73846272:1/3/4/1
726353- 8/9/4/1
27364521-3/5/1/3
I have build an expression:
This would work great if I knew all the records were seperated by ":" but this is not the case.
Ideally I want an expression that would just return the number no matter what the separator is.
Thanks in advance.
I currently have a field (Allocation) in access that contains information like the following
123456: 1/1/2/1
73846272:1/3/4/1
726353- 8/9/4/1
27364521-3/5/1/3
I have build an expression:
Code:
Number: LEFT([Allocation],InStr([Allocation],":")-1)
Ideally I want an expression that would just return the number no matter what the separator is.
Thanks in advance.