From: mark on 4 Mar 2010 13:59 Hello All , /*Generate a table for the total number of units sold over each week*/ proc tabulate data=WEEK f=dollar8.; class week Laptopmodel; var UnitsSold; table week*Laptopmodel, Unitssold; run; proc print data = Tabulate; run; I'm getting the $ sign in the 'UnitsSold' in output and dont want it.If I dont use the 'dollar' in data step then i dont get correct numbers , kindly suggest the correctness needed. Regards , mark
From: Richard A. DeVenezia on 5 Mar 2010 13:14 On Mar 4, 1:59 pm, mark <mark.chas...(a)yahoo.in> wrote: > Hello All , > > /*Generate a table for the total number of units sold over each > week*/ > proc tabulate data=WEEK f=dollar8.; > class week Laptopmodel; > var UnitsSold; > table week*Laptopmodel, > Unitssold; > run; > proc print data = Tabulate; > run; > > I'm getting the $ sign in the 'UnitsSold' in output and dont want > it.If I dont use the 'dollar' in data step then i dont get correct > numbers , kindly suggest the correctness needed. Mark: Try using the COMMA format -- Richard A. DeVenezia http://www.devenezia.com
|
Pages: 1 Prev: speed (or efficiency) of proc append and sql out union? Next: help in proc reg |