Reputation: 1
I have several data sets on exel. I am a Macbook user and I use SASonDemand (the online version). How can I convert the excel files to SAS format? I need the files for further analysis on SAS.
I tried to watch YouTube videos but I am too new to understand.
Upvotes: 0
Views: 518
Reputation: 21274
Your computer (Mac/Windows) doesn't matter for the cloud application.
Here's a webinar that outlines this process. https://communities.sas.com/t5/Ask-the-Expert/How-Do-I-Read-and-Write-Excel-Files-Using-SAS-Q-amp-A-Slides-and/ta-p/791230
Upvotes: 0
Reputation: 3315
you can use libname statement, one of the easy way to do. So if your excel file is in a particular location. All you need to do is
libname mylib XLSX "/home/user/yourexcelfile.XLSX";
Once you do this you can access excel file as SAS dataset
Upvotes: 0