How to sum a particular column in SAS. If I have a data then age 15 23 63 56 78 45 How can I get the sum of the variable Age in Data Step.
... View more
data have; input Name $ Age; cards; Jack 10 Joe 31 Tom 22 Roe 33 Rex 44 Tim 24 ; How to find the maximum value of AGE variable through data steps without using loop, min and max function.
... View more