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)

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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