I have a text in the following format:
#Vol.1#Pg.132#December 2002#Source:ABC
##Pg.140#January 2001#
How can I parse it through query or VBA whichever is easy and store values as follows:
First one after # sign should go in a field called Volume (for instance Vol.1). The second one after # should go into a field called Page (for instance Pg.132. The third one after # should into a field called PubDate field (for instance: December 2002) and the fourth field should go into a field called source (for instance ABC).
If you look at the second one, sometimes there won't be value.
All these values are in a Microsoft Access format in one single field called PubText.
Any helps would be greatly appreciated.
#Vol.1#Pg.132#December 2002#Source:ABC
##Pg.140#January 2001#
How can I parse it through query or VBA whichever is easy and store values as follows:
First one after # sign should go in a field called Volume (for instance Vol.1). The second one after # should go into a field called Page (for instance Pg.132. The third one after # should into a field called PubDate field (for instance: December 2002) and the fourth field should go into a field called source (for instance ABC).
If you look at the second one, sometimes there won't be value.
All these values are in a Microsoft Access format in one single field called PubText.
Any helps would be greatly appreciated.