Hi, I am soon taking the Advanced Programmer exam but am stuck on one of the sample questions: Write a SAS program that will: • Create output data set work.ACT01 using sashelp.pricedata as input. • Use an array to increase the values of the price1 through price17 variables by 10%. Arrays and do loops would be used in the program. I keep getting the subscript out of range error with this attempt: data work.ACT01; set sashelp.pricedata; array original {17} price1-price17; do i=1 - 17; original{i} = original{i}*1.1; end; run;
... View more