Proc sql;
Create table pts60D1 as
Select * , Min(days_to_servdate) as HC_first
From pts60D
Group by key_enc
Having min(days_to_servdate)
;quit;I have one question how would I add a condition to select the min date after ignoring the negative values
@Ranjeeta wrote:
I have one question how would I add a condition to select the min date after ignoring the negative values
I don't see a variable named date.
Where would the negative values be (what variable)?
@Ranjeeta wrote:
I have one question how would I add a condition to select the min date after ignoring the negative values
I don't see a variable named date.
Where would the negative values be (what variable)?
Proc sql;
Create table pts60D1 as
Select * , Min(days_to_servdate) as HC_first
From pts60D(where=(days_to_servdate>=0))
Group by key_enc
Having days_to_servdate=min(days_to_servdate)
;quit;
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 lock in 2025 pricing—just $495!
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.