From: mark on
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
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