Given the SAS data set ONE:
ONE
DIVISION SALES
----------- ----------
Answer(s)
- 1234A 3654
- 5678The following SAS program is submitted:data _null_;set one;by division;if first.division thendo;%let mfirst = sales;end;run;What is the value of the macro variable MFIRST when the program finishes execution?A. 1234B. 5678
- Null
- Sales
Correct Answer
Sales