/ Published in: SAS
URL: http://studysas.blogspot.com/2009/02/merging-data-sets-using-macro-code.html
Merging the data sets with a common variable if the datasets has the same prefix name?
For example: col1-col10 dsn1-dsn 7 data1 to data6 with common variable of Usubjid.
Expand |
Embed | Plain Text
here is the example, I have 7 datasets i need to merge and each of them having the common variable(usubjid) to merge, and all the datasets having the same prefix dsn(dsn1 to dsn7). %macro allmerge (n); data combine; merge %do i = 1 % to &n; dsn&i; %end; by usubjid; run; %mend; %allmerge (7) Sarath www.studysas.blogspot.com
You need to login to post a comment.
