BookmarkSubscribeRSS Feed
ANU_s
Calcite | Level 5

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??

1 REPLY 1
Reeza
Super User

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?

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1088 views
  • 0 likes
  • 2 in conversation