A family of Microsoft relational database management systems designed for ease of use.
You need the CustomerID to remain INCREMENTAL or SEQUENTIAL? Those are two different things. You can seed the table when importing your data so that the next Autonumber will be incremental. Check out this article: http://allenbrowne.com/ser-26.html
But Sequential means something different it means that the numbers are in a sequence with no gaps in the sequence (for example my company assigns Employee badge #s in a sequence of 5 (3005, 3010, 3015) etc. I use the technique described on my blog to pull the next sequential number. But internally I use an autonumber as my PK field.
The sequence doesn't really matter for any purpose.
Exactly! That's the point I was trying to make. As long as the CustomerID is unique, there is really no value in making it sequential. And, therefore, an Autonumber suits your purpose fine.
*"*How do I use the AutoNumber from the Customer Contact Information with the Order Form and Order Content then?"
A Primary key and a Foreign Key are different. The Primary key uniquely identifies the parent record, but a foreign key identifies the parent record the child record relates to. So you have a CustomerID field in your Order table to identify the customer making the Order. But this is not a unique value as customers can (hopefully) make multiple orders. So each order record would have a foreign key indicating the customer making the order.
"other than the fact that is what it is like now in the spreadsheet. "
Don't make that mistake. Excel is a great spreadsheet. Highly suited for analyzing data and creating calculations and what ifs. But its not a database, especially not a relational database. Don't try to duplicate the spreadsheet structure. You need to normalize your data first! Then you can import the data fromt he spreadsheet and place it in normalized tables.