[pre]
data x;
input time time5.;
format time time5.;
cards;
08:09
10:21
12:00
23:22
;run;
data _x;
set x;
where time between '10:11't and '14:20't;
run;
[/pre]
Ksharp
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.