Reading in Data into SAS using 'Where' function -


for reason i'm not being able read in data properly. want able read in large data set within specific dates such jan 2004 feb 2004. code following:

data work.sales_fact; set work.sales_fact_subset; '01jan2004'd <= order_date <= '14feb2004'd; run;  proc print; run; 

what doing incorrectly?

i think have data , set switched. data want create. set data coming from.

data work.sales_fact_subset ; set work.sales_fact; '01jan2004'd <= order_date <= '14feb2004'd; run;  proc print data=work.sales_fact_subset; run; 

Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -