I
Ivan
I inherited a database that I would like to clean up and
make it easier to maintain.
Right now it as a bunch of mailing label reports. Each
one is the same except for the restriction of the input
records. The user will select a "tag" that they want a
mailing label print from. A "tag" is a group of folks
with like interests or ???. The users would like to also
select multiple "tags" and have the system sort them and
delete the duplicates.
My best guess is:
1. Create a temp table that would get populated based on
which tags they select.
2. Create a form (that would be modified every time a
new "tag" is created unless someone out there in has a
suggestion on how to do it better)
3. Have a query that is based on the temp table with
SELECT DISTINCT.
4. Create the Mailing Label report based on query in #3
above.
That way at least I would only have to maintain a few
forms based on the data they want rather than 4 forms for
each "tag" type (of which there are about 82 right now).
Any and all ideas welcome.
tia
Ivan
make it easier to maintain.
Right now it as a bunch of mailing label reports. Each
one is the same except for the restriction of the input
records. The user will select a "tag" that they want a
mailing label print from. A "tag" is a group of folks
with like interests or ???. The users would like to also
select multiple "tags" and have the system sort them and
delete the duplicates.
My best guess is:
1. Create a temp table that would get populated based on
which tags they select.
2. Create a form (that would be modified every time a
new "tag" is created unless someone out there in has a
suggestion on how to do it better)
3. Have a query that is based on the temp table with
SELECT DISTINCT.
4. Create the Mailing Label report based on query in #3
above.
That way at least I would only have to maintain a few
forms based on the data they want rather than 4 forms for
each "tag" type (of which there are about 82 right now).
Any and all ideas welcome.
tia
Ivan