Col1 Col2 1 1,5,4,3,2,6 2 21,3,2,1,5,15,17,3 3 1,2,3 4 4,3,2 Dear Friends, I have dataset like above, I would like to convert it like below. Can someone suggest me the easy way. Thanks in advance. Col1 Col2 1 1,2,3,4,5,6 2 1,2,3,3,5,15,17,21 3 1,2,3 4 2,3,4
... View more
SAS Studio just got a major upgrade—and it’s more than just a facelift. The June 2025.06 stable release introduces a brand-new user interface built on a modern framework, offering a noticeably faster, smoother, and more responsive experience. Whether you build flows, write code, design custom
... View more
Hi All, Can anyone help with the process to follow for upgrading the SAS 9.4M7 to 9.4M9 in Linux server which is released recently as Standard Support for the SAS 9.4M7 platform ends Sept. 1, 2025. Thanks Mahidhar
... View more
Trying to create a list of datasets that exist, so I can use that list in a data step to create a combined dataset. Below code is the best I can do. Can someone show me how to do this ? %macro setvars;
%global mylist = '';
%if %sysfunc(exist(MYRAW.&mysid.MBS1)) %then
mylist = cats(mylist,VARS_MBS1);
%if %sysfunc(exist(MYRAW.&mysid.DWS1)) %then
mylist = cats(mylist,VARS_DWS1);
%if %sysfunc(exist(MYRAW.&mysid.FMS1)) %then
mylist = cats(mylist,VARS_FMS1);
%if %sysfunc(exist(MYRAW.&mysid.PSS1)) %then
mylist = cats(mylist,VARS_PSS1);
%mend setvars;
%setvars;
data work.all_vars_1;
set &mylist.;
run;
... View more
Hi all,
I need to convert an Excel report into SAS. I suspect I can create the 4 side by side charts (or think I know how I'm going to attack it), but how do I create the data bars? I tried finding examples but can't seem to find any. Can someone provide sample code or point me to sample code and output? The desired output is to be in PDF.
Thank you
Paula
... View more
Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.