I am trying to export data into an existing excel sheet, so that the values are pasted as special values. There is an existing pivot table designed based on the information on the current sheet.
Is there any method to do the above?
I have created a pivot table in new sheet in 'shoes.xls' excel file and saved in C drive. Then i made a copy of the shoes file and made changes in the data and saved it as 'shoesnew.xlsx'
I have tried this:
proc import datafile="C:\shoesnew.xlsx"
dbms=xlsx
out=shoesnew
replace;
getnames=yes;
run;
data shoesnew;
set shoesnew;
run;
ods tagsets.ExcelXP path='H:\' file='shoes.xls' style=printer;
ods tagsets.ExcelXP options(sheet_name='shoes');
proc print data=shoesnew noobs; run; quit;
ods tagsets.excelxp close;
************My data in the shoes.xls is getting erased if i am using above statements*********************
Can anyone please suggest if it possible to paste values as special in an existing excel sheet??
I'm a touch confused, what are you trying to do overall.
Are you trying to get data into Excel from SAS (PROC EXPORT)
or into SAS from Excel (PROC IMPORT)?
There is a method to copy data to the clip board, but it isn't quite that simple. Would that be what you're looking for?
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.