This may clarify it.
Import the file, the imported date variable would be what was in the excel file. It would be a datetime value.
In your SAS code,
data new; set imported_file_name;
dateonly=datepart(date_variable);
format dateonly mmddyy8.;
proc print;run; Or whatever you need to from here.