I am struggling to find a way to look up 2 values in a table. In access i would have used a dlookup function.
I want to set macro 2 macro variables to give me the min and max date of a field. Is there something comparible to dlookup in SAS?
%let date_min = ? (min date of Record set date field)
%let date_max = ? (Max date of Record set date field)
example:
proc sql noprint;
select max(weight) , min(weight) into
:max_wt,:min_wt
from sashelp.class;
quit;
%put &max_wt;
%put &min_wt;
example:
proc sql noprint;
select max(weight) , min(weight) into
:max_wt,:min_wt
from sashelp.class;
quit;
%put &max_wt;
%put &min_wt;
That bit of code is very helpful. I could only think of methods using multiple procedures, like PROC MEANS and the PROC SQL. Very useful. Thanks.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.