본문 바로가기
SAS

[SAS] Import excel file (+specifying a sheet)

by Aubreyy 2022. 4. 22.
proc import 
file="C:\Users\data.xlsx"
out=dt
dbms=xlsx;
sheet="Sheet 1";
run;

 

'SAS' 카테고리의 다른 글

[SAS] Delete imported table/dataset  (0) 2022.04.25
[SAS] data type check  (0) 2022.04.24
[SAS] SQL in sas  (0) 2022.04.24
[SAS] print the first 10 line of data  (0) 2022.04.24

댓글