Hi all,
Was wondering if someone could help me with this little issue i am having with creating a query to pull out a date string from a field.
the fields data looks like this.
FieldName = SV_DESC
CONF:7/26 #(4) MIN(99) 800PC
I need to pull only the information 7/26 from the field.
Note: It could be 07/26 or in there as 7/26. Also there are instances where it appears without the
)colon after the CONF
I tried using the following in my query,
Date: Mid([SV_DESC],InStr([SV_DESC],":")+1,InStr(InStr([SV_DESC]," ")-2,[SV_DESC]," "))
but it gives me data after the space in the date. 7/26 #(4)
Thanks for the help and advice
Was wondering if someone could help me with this little issue i am having with creating a query to pull out a date string from a field.
the fields data looks like this.
FieldName = SV_DESC
CONF:7/26 #(4) MIN(99) 800PC
I need to pull only the information 7/26 from the field.
Note: It could be 07/26 or in there as 7/26. Also there are instances where it appears without the
I tried using the following in my query,
Date: Mid([SV_DESC],InStr([SV_DESC],":")+1,InStr(InStr([SV_DESC]," ")-2,[SV_DESC]," "))
but it gives me data after the space in the date. 7/26 #(4)
Thanks for the help and advice