A family of Microsoft relational database management systems designed for ease of use.
If this is going to be a repeated operation, then you can automate it and repeat the steps needed so that you only have to do it once.
Step One.
Import the csv into a temporary table in Access. This creates a template for future imports that can then be replicated.
Step Two.
Create a query based on that temp table. Include in that query only the fields you want to keep. The first time you run, you can run it as a Make Table query to create the permanent, production table if necessary. Or, if you want to update an existing table, you can use it that. Or, if you want to append new records, you can also do that.
Step Three.
Delete the records from the temporary table in preparation for the next import.
Step Four.
You can, if you want, put each of these steps into a VBA procedure which can be called from a command button on a form.