Hi. Here is the solution I used in the answers to the even numbered problems (available to teachers or self-learners who make a request to SAS). data markup; input manuf : $10. Markup; datalines; Cannondale 1.05 Trek 1.07 ; proc sort data=learn.bicycles out=bicycles; by Manuf; run; data markup_prices; merge bicycles markup; by Manuf; NewTotal = TotalSales*Markup; format NewTotal dollar10.; run; title "Listing of MARKUP_PRICES"; proc print data=markup_prices noobs; run; By the way, I have just finished the second edition of the Learning SAS by Example book and the technical edits are due today. I hope you will take a look at it. All of the programs are up to date with the changes in SAS since the first edition was written. The chapter on SAS Graph was replaced with one on PROC SGPLOT and a new chapter covering regular expressions was added. Best, Ron Cody
... View more