I'm trying to append a macro variable's value to a macro list, Can someone please let me know if it's possible. TIA
%macro BestDeveloper(table1);
proc sql;
select developer_id into :DevelopersList separated by ' ' from table1;
quit;
%let best_developer = 1125863416;
/* Code to append macro variable best_developer's value to the macro-list DevelopersList */
/*
***********Unrelated code********* */
%mend;
%BestDeveloper(developerTable);