hyperdreamz
New member
- Local time
- Tomorrow, 03:28
- Joined
- Sep 29, 2004
- Messages
- 1
Request help in creating a MS ACCESS VBA Module to remove portions of a string based on phrases in another table.
I am not a programmer but has a basic understanding of MS ACCESS & VBA.
Any help would be appreciated.
Table 1 with over a million records contains FIELD1 with large amounts running text(chats transcripts)
Table 2 contains a large number of restricted phrases in FIELD2 I wish to remove from the running text without leaving extra spaces
In order to generate OUTPUT table below
.
.
.
I am not a programmer but has a basic understanding of MS ACCESS & VBA.
Any help would be appreciated.
Table 1 with over a million records contains FIELD1 with large amounts running text(chats transcripts)
Table 2 contains a large number of restricted phrases in FIELD2 I wish to remove from the running text without leaving extra spaces
In order to generate OUTPUT table below
Code:
TABLE1
---------
FIELD1
This is normal text.
This is not normal text.
This maybe normal text. This normal is text.
This can be normal text.
This normal is text. This normal is text.
Code:
TABLE2
---------
FIELD2
is normal
is text
Code:
OUTPUT
---------
FIELD1
This text.
This is not normal text.
This maybe normal text. This normal.
This can be normal text.
This normal. This normal.