Data A;
Do n = "ASFE", "ISFE", "SFXE";
Output;
End;
Run;
Proc SQL NoPrint;
Select n Into :n Separated By "," From A;
Quit;
%Put **&n.***;
* **ASFE,ISFE,SFXE***;
Data A;
Do n = "ASFE", "ISFE", "SFXE";
Output;
End;
Run;
Proc SQL NoPrint;
Select n Into :n Separated By "," From A;
Quit;
%Put **&n.***;
* **ASFE,ISFE,SFXE***;
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.