I have a macro for which input arguments are dates. For example: %smart("20jun2019"d) %smart("21jun2019"d) . . . %smart("29jun2019"d) I need to automate the above code,such that if I have start date and end date ,all the respective dates between this start and end dates should be included ,and it should happen in the above mentioned code and it should happen automatically. Kindly help me in the automation of above mentioned code. I tried using below code using do loop but it didn't worked Data s; Do i ="21jun2019"d to "29jun2019"d; Output; Call execute("%smart(i)"); End; Run;
... View more