Hi, can you explain how this o/p is obtained when the following program is executed data abc; input a $ b; datalines; A 20 B 40 C 60 D 80 ; run; data xyz; do i = 1 to 3; set abc; X + 1; output; end; run; proc print data=xyz; run; Please also throw some light at what point Set statement is read
... View more