Hi Guys, I have a small issue about SAS Macro: i have 5 tables: trans2018_01, trans2018_02, trans2018_03, trans2018_04, trans2018_05. i need to append it with some kind of criteria. if i'll write 1,2,3 program has to be able to append first three tables. when 1,2,3,4 - 4 tables. they are titled by months. i have a small construction of code: input -> startyear, startmonth, endyear, endmonth %let startdate, %let enddate nummonths -> (for understanding how many months are in these period) proc sql; append; can anyone tell me how my code should really be?
... View more