I have two questions - as maybe I have started off wrong with my database
project.
I have two tables for people to enter their work information into (i
imported from excel). To combine these two tables I did a union query and
based queries and reports off of. I made column changes to the tables and
realized a union query won't update so I had to rebuild - Is this correct or
is there a way around it (as people are always wanting me to go add in new
columns)? My union query currentlly reads:
"SELECT [DATE RECEIVED], [CUSTOMER], [REGION], [TYPE], [IS THIS A
CONTRACT?], [HOLD - DEAD ISSUE], [STATUS], [DATE COMPLETED/IMPLEMENTED],
[AWAITING SIGNATURE], [REQUESTOR], [DESCRIPTION], [NUMBER OF REDLINES] FROM
[BARBARA WIP] WHERE [IS THIS A CONTRACT?]=YES
UNION SELECT [DATE RECEIVED], [CUSTOMER], [REGION], [TYPE], [IS THIS A
CONTRACT?], [HOLD - DEAD ISSUE], [STATUS], [DATE COMPLETED/IMPLEMENTED],
[AWAITING SIGNATURE], [REQUESTOR], [DESCRIPTION], [NUMBER OF REDLINES] FROM
[SARA WIP] WHERE [IS THIS A CONTRACT?]=YES;
2nd Question
My question is that I want to know go into the tables and change a column to
have a drop down menu to select the city (currently they type it in). I
don't have forms - should I? Can I do a drop down or combo list in a table -
and how? Then will I need to worry about my union query and reports that I
already have built?
Please help! Thanks in advance as I have truly learned a lot from these
discussion groups.