I would create a form in Excel. That allows you to lock down the data entry and provide the combos. Since the combo values might have to change over time, I would include a version number on the form. Then when you import the data from the form, you can check the version and tell the user he needs to use the latest template and provide a link.
The code behind the Excel form can capture the user's ID and include that as well. Then for the receiving app, you can set up a separate folder in your email so that these forms automatically get placed in the inputForm folder. The app can search this folder when it opens and also by a button click if it needs to be done more frequently. The process links to the spreadsheet, checks the version, validates the data and imports it. Then it logs the file in an import table with file name, date, and who it came from and moves the file from the inputForm folder to the processedForm folder.
You can include validation in the spreadsheet form as a pre-flight check to try to get the best data you can, but you really need to do validation in your Access app also JIK.