Hi Guys, I have below table : Data Abc; input x y z; datalines; 2 3 1 3 2 1 1 2 3 2 2 2 ; run; Problem : I want my to multiply all the observation one by one for their respective columns. Hence my output would look like below : X Y Z 2 3 1 6 6 1 6 12 3 12 24 6
... View more