Is it possible to SAS to process each row individually?
So for example, I have a data set:
Name Age
a 1
b 2
I would like to loop through each row and use a function which uses the data of each of the row. So say Excute() is a function where you have to input name and age. Is it possible to process each row, i.e. execute(a,1) and execute(b,2)?
Thank you very much for your help
So for example, I have a data set:
Name Age
a 1
b 2
I would like to loop through each row and use a function which uses the data of each of the row. So say Excute() is a function where you have to input name and age. Is it possible to process each row, i.e. execute(a,1) and execute(b,2)?
Thank you very much for your help