Below I have the results of the macros that I have created.
%put &alldates1.;
'02/22/2021', '02/23/2021', '02/25/2021', '02/26/2021', '03/01/2021'
%put &alldates2.;
'02/22/2021' '02/23/2021' '02/25/2021' '02/26/2021' '03/01/2021'
I want to make edits to the macros to look like this without having to type them out or make edits to each item on the list:
%put &alldates1.;
'02/22/2021'N, '02/23/2021'N, '02/25/2021'N, '02/26/2021'N, '03/01/2021'N
%put &alldates2.;
'02/22/2021'N '02/23/2021'N '02/25/2021'N '02/26/2021'N '03/01/2021'N
Thanks in advance!