Search the site...

SASCRUNCH TRAINING
  • Home
  • Member's Area
  • How to Start
  • SAS Interface
  • Creating a Data Set
  • Practical SAS Training Course
  • SAS Certified Specialist Training Program
  • Proc SQL Course
  • Introduction to Time Series Analysis
  • SAS Project Training Course
  • Full Training / Membership
  • Sign up
  • About us
  • Contact us
  • Home
  • Member's Area
  • How to Start
  • SAS Interface
  • Creating a Data Set
  • Practical SAS Training Course
  • SAS Certified Specialist Training Program
  • Proc SQL Course
  • Introduction to Time Series Analysis
  • SAS Project Training Course
  • Full Training / Membership
  • Sign up
  • About us
  • Contact us
Sentry Page Protection
Please Wait...
** Question 1 **;

%let region = Canada;
%let stat = sum;

proc means data=sashelp.shoes &stat maxdec=0;
var sales;
class product;
where region = "&region";
run;


** Question 2 **;
​

%let area = Bendeleben;

Title "List of Hotsprings in &area";
proc print data=sashelp.springs;
where area = "&area";
run;
Next
Already a member? Go to member's area.