Hello I have this question I'm facing I have managed to write programme for it but not sure whether it is correct. Please help me to guide through this. I have a data set as follows salary year 257891.58 2015 Question 1 the question is increase the salary variable by 5.65% annually unitll it is greater than $500,000. Question 2 Increment the year variable by 1 with each annual increase Question 3 Create an output data set that has one observation for each value of year.Each observation should have a year and salary variable. I have written the following programme I'm i correct ? data results.output12; set cert.input12; salary=salary; do until(salary gt 500000); salary+salary*0.0565; year+1; output; end; run;
... View more