I was following some advice on normalising my database, and one key point, which now makes sense, is putting addresses in their own table.
This now means I can categories addresses and have multiple addresses per customer, e.g. shipping, billing, marketing and home. It also saves data - for those who do not have an address.
The main issue is now to import large quantities of data from excel I need to prepare 2 excel files and make sure the CustomerID match those on both files - that's after manually typing in the ID's
I can do this no trouble, but I need to create an automated version for the end user. Some way to import only part of an excel spreadsheet into one table and another part into another table, using the auto number from customerID to populate the Address table with the same ID's...
does this make sense?
Some starting point will be much appreciated.
Thanks in advance!!
This now means I can categories addresses and have multiple addresses per customer, e.g. shipping, billing, marketing and home. It also saves data - for those who do not have an address.
The main issue is now to import large quantities of data from excel I need to prepare 2 excel files and make sure the CustomerID match those on both files - that's after manually typing in the ID's
I can do this no trouble, but I need to create an automated version for the end user. Some way to import only part of an excel spreadsheet into one table and another part into another table, using the auto number from customerID to populate the Address table with the same ID's...
does this make sense?
Some starting point will be much appreciated.
Thanks in advance!!