Hi there, I have several variables called V1 V2 ... Vn, how can I put this sequence in by statement to make the sample group by every variable in this sequence? Just like this: proc ttest data=test3; by V1 V2 ... Vn; var ret; run; The n is one of my macro variables, and sometimes I need to change the value of n.
... View more