Use the dollar. format
to convert numeric sales figures into dollar values. Suppose you have
an SPD Server data set
Sales with a single
numeric variable
salesite representing the
total sales for a given site. Using SQL Pass-Through, create a new
data set containing the sales in dollar format.
PROC SQL;
connect to sasspds
(dbq='tmp'
user='anonymous'
host='localhost'
serv='5127');
execute(create table money
as select salesite
format=dollar.
from sales)
by sasspds;
quit;