Dear SAS Community, This is probably an easy question, however, I have trouble making it work. I just want to find out either a maximum or minimum number from two numbers that have unique values. For an example, I get errors when writing below: data Test; q1=5; q2=10; z=Largest(q1, q2); run; Thank you for your help!
... View more