Hello. Any help you can give is much appreciated.
I've successfully imported the 40 xlslx spreadsheets using the code I found on this communities website - program attached.
But, I'm unable to append them because I'm getting error messages that some variables are both character and numeric.
This happens with the date fields (formatted as short date in xlsx) which have some missing observations.
How do I get around this? MIXED=YES gives me more date fields that come up as character than numeric.
Is it better to import as character or as numeric?
Your code was truncated.
Thanks! Uploaded SAS file because it wasn't pasting properly.
While importing excel files some of the variables may contain missing values in the first row that creates a problem. PROC IMPORT with an Excel file, uses the first eight lines to determine if a variable is numeric or character. So importing csv files will provide more flexibility. You can put GUESSINGROWS = (max number of rows to be examined) option in proc import to determine the exact variable type.
Regards,
Naeem
And you probably want to start with the code you used to import the data.
The quickest fix might end up making changes in the Excel data or exporting the data to CSV and reading that with more control than proc import gives, such as control over whether a variable is numeric or character, associated formats and use of appropriate informats.
I highlighted all the date columns in each Excel spreadsheet and changed them to 'short date' but still unable to import the fields (esp ones with more missing values) as numeric.
I can try to export into CSV and import into SAS unless you suggest anything else?
If you want PROC IMPORT to have an option to import all fields as character, please vote:
If you want PROC IMPORT to have an option to import all fields as character, please vote:
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.