I wrote SAS code and I need to pass value depending upon the parameter value .. SAS Code run and get the required output
%MACRO FTIC(Student_Entry=, Admission_Year=,YEAR_TRACK=, TERM=, College );
...
...
...
%MEND FTIC;
%FTIC(Student_Entry= A, Admission_Year=2012 ,YEAR_TRACK=1, TERM=Summer/FALL )
Here are the values for each parameter: Student_Entry= A, B,C, D
Admission_year = 2012, 2013, 2014, 2015, 2016
Year_Track = 1, 2,3,4,5
Term= Summer/Fall, Spring
I am writing below lines more than 4*4*5*2 times lines. to achieve my result.
%FTIC(Student_Entry= A, Admission_Year=2012 ,YEAR_TRACK=1, TERM=Summer/FALL )
Can you please tell me how-how to write this more efficiently.