BookmarkSubscribeRSS Feed
Daily1
Quartz | Level 8
  data SampleData;
    input ID Name $ Age;
    datalines;
    1 John 30
    2 Alice 25
    3 Bob 35
    4 Carol 28
    5 David 40
    ;
  run;

%macro create_sample_data;
%let id=1;
  proc print data=SampleData;
where id=&id;
  run;

%mend create_sample_data;

%create_sample_data;

Can we connect sas studio to sas dashboard via paramere as button to automatically change , just like stored process 

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

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 0 replies
  • 584 views
  • 0 likes
  • 1 in conversation