G'day. Appreciate any help you can give!
I'm trying to subset a dataset by county (i.e, create one table with just observations from Humboldt. Then, create another table with just observations from Fresno).Then export each county-specific dataset to a MS Access Database using a Macro.
I've not gotten very far.
%macro table(county=);
DATA Elig13<want countyname here>;
set eligibles;
if coname=<countyname here>;
run;
%mend;
%table (HUMBOLDT);
%TABLE (FRESNO);
%TABLE (ORANGE);
%TABLE (KERN);