BookmarkSubscribeRSS Feed
saskupo
Calcite | Level 5

I just discovered that there is a SAS Add-in in Microsoft Excel. I just want to know if there is  a way to know the current directory of the excel file using the code that will be run in SAS Add-in inside excel. The excel is connected through SAS EG, server based. I have tried to use  the following code but the result points to the location:

D:\SASConfig94\Lev1\SASApp94\

 

libname here '' access=readonly;

data _null_;
path = pathname('here');
call symput('xpath', trim(left(path)));
%put &xpath;
run;

 

1 REPLY 1
tomrvincent
Rhodochrosite | Level 12
=LEFT(CELL("filename", A1), FIND("[", CELL("filename", A1))-1)

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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