Question : Keeping Look Ups in a Make Tabel Query

I need to start a new a new table from a make table query. When I make the new table although I lose all my drop down lists for the user to select information from fields. Is there any way to keep the same previous table format and drop down lists when making this new table?

Answer : Keeping Look Ups in a Make Tabel Query

Instead of creating new table delete all records from existing table and insert new ones. You may do it as a query:

1) Delete all rows
DELETE FROM YourExistingTable

2) Insert new records
INSERT INTO YourExistingTable (ColumnName1, ColumnName2, ColumnName3, ...)
  VALUES (Value1, Value2, Value3, ...)

or

INSERT INTO YourExistingTable (ColumnName1, ColumnName2, ColumnName3, ...)
  SELECT ColumnX, ColumnY, ColumnZ
    FROM AnotherExistingTable
Random Solutions  
 
programming4us programming4us