simon551
IS-IT--Management
- May 4, 2005
- 249
Hi,
In this post, phv helped me to pull data in a query to the right of a separator using the mid and instr functions.
short answer:
NewField: IIf(OldField Like '*:*', Mid(OldField,1+InStr(OldField,':')), OldField)
I'm wondering if anybody knows how to do the same thing but instead of getting the data to the right, we want the data to the left...
In this post, phv helped me to pull data in a query to the right of a separator using the mid and instr functions.
short answer:
NewField: IIf(OldField Like '*:*', Mid(OldField,1+InStr(OldField,':')), OldField)
I'm wondering if anybody knows how to do the same thing but instead of getting the data to the right, we want the data to the left...