K
kennedyr4
I have a query with one field (text) that needs to be parsed into two
separate fields (num, date)
Ie.
Field 1 - [Hits]
Number of hits: 22 since 2005-09-21.
Number of hits: 1 since 2006-03-14.
Number of hits: 534 since 2005-09-20.
Number of hits: 212 since 2005-10-07.
Number of hits: 4231 since 2006-03-14.
Number of hits: 54 since 2005-09-20.
Number of hits: 1217 since 2005-10-07.
Number of hits: 1 since 2006-03-14.
I would like it to be:
Field 2 - [NumHits] Field 3 - [Date]
22 2005-09-21
1 2006-03-14
534 2005-09-20
212 2005-10-07
4231 2006-03-14
54 2005-09-20
1217 2005-10-07
1 2006-03-14
The original text string always follows the same format with the only
variable being the size of the integer between (Hits and (since). All text
strings end with a (.)
Any suggestions would be helpful. I'm hoping that there an easy way of doing
this since I am not a code writer. I'm using Access 2003.
separate fields (num, date)
Ie.
Field 1 - [Hits]
Number of hits: 22 since 2005-09-21.
Number of hits: 1 since 2006-03-14.
Number of hits: 534 since 2005-09-20.
Number of hits: 212 since 2005-10-07.
Number of hits: 4231 since 2006-03-14.
Number of hits: 54 since 2005-09-20.
Number of hits: 1217 since 2005-10-07.
Number of hits: 1 since 2006-03-14.
I would like it to be:
Field 2 - [NumHits] Field 3 - [Date]
22 2005-09-21
1 2006-03-14
534 2005-09-20
212 2005-10-07
4231 2006-03-14
54 2005-09-20
1217 2005-10-07
1 2006-03-14
The original text string always follows the same format with the only
variable being the size of the integer between (Hits and (since). All text
strings end with a (.)
Any suggestions would be helpful. I'm hoping that there an easy way of doing
this since I am not a code writer. I'm using Access 2003.