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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.