T
Tiana Arylle
Hi -
I have a requirement to take a phrase from one field and split each word
into a new record in a different table when that field on a form is updated.
This new table will be used as a search table, where each word is considered
a keyword (yes, even things like "a" and "the"). The search isn't being done
in access, so I don't have to worry about that piece.
I've been thinking that I need to trigger an append query from the form,
which would split the description into the relevant words (the length of the
description can vary) and then append the ID and each split word as a
separate record in table 2...but I can't get this to work. And, of course, I
need to call this from several forms. Help?
So, for example,
Table1 contains fields ID and Description.
ID: 123
Description: Sally loves dogs.
From a form, when changes are saved I need to take this information and put
it in
Table2.
Table2 contains ID and Keyword.
ID: 123
Description: Sally
ID: 123
Description: Loves
ID: 123
Description: Dogs
Thanks for your help!
I have a requirement to take a phrase from one field and split each word
into a new record in a different table when that field on a form is updated.
This new table will be used as a search table, where each word is considered
a keyword (yes, even things like "a" and "the"). The search isn't being done
in access, so I don't have to worry about that piece.
I've been thinking that I need to trigger an append query from the form,
which would split the description into the relevant words (the length of the
description can vary) and then append the ID and each split word as a
separate record in table 2...but I can't get this to work. And, of course, I
need to call this from several forms. Help?
So, for example,
Table1 contains fields ID and Description.
ID: 123
Description: Sally loves dogs.
From a form, when changes are saved I need to take this information and put
it in
Table2.
Table2 contains ID and Keyword.
ID: 123
Description: Sally
ID: 123
Description: Loves
ID: 123
Description: Dogs
Thanks for your help!