BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
dsbihill
Obsidian | Level 7

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)

1 ACCEPTED SOLUTION

Accepted Solutions
Linlin
Lapis Lazuli | Level 10

example:

proc sql noprint;

  select max(weight) , min(weight) into

        :max_wt,:min_wt

   from sashelp.class;

quit;

%put &max_wt;

%put &min_wt;

View solution in original post

2 REPLIES 2
Linlin
Lapis Lazuli | Level 10

example:

proc sql noprint;

  select max(weight) , min(weight) into

        :max_wt,:min_wt

   from sashelp.class;

quit;

%put &max_wt;

%put &min_wt;

DataMatt
Calcite | Level 5

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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1519 views
  • 1 like
  • 3 in conversation