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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1533 views
  • 1 like
  • 3 in conversation