Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
124 views

Tell SAS not to add newly generated tables on the Process Flow

I have a SAS code that creates a lot of intermediary tables for my calculations. Thing is, I don't really care about this tables after the job is done, I only care to the finals results. But, ...
2
votes
3answers
430 views

SAS Enterprise Guide using 1 query on multiple data sets

I want to run multiple data sets (that are in the same format) through a single query and for it to produce an output for each data set that is input. Is the possible in SAS Enterprise Guide?
1
vote
1answer
58 views

SAS EG image in footnote

i would like to insert an image in the footnote. What command should i use ? For example , my image file is locate at "C:\Image\img_footnote.jpg". thanks. sreenshot image link(not enough reputation ...
0
votes
2answers
282 views

Determine the folder of a SAS source file

When I open a SAS file in enterprise guide and run it, it is executed on the server. The source file itself is located either on the production site or the development site. In both cases, it is ...
0
votes
2answers
367 views

SAS Enterprise Guide UNIX WORK library - viewing files

How do I view the file below in Enterprise Guide (v 4.1 ) ?? %let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ; data _null_; file "&libWORK./MYFILE.htm"; put '<html>' / ...