Date: Fri, 29 Mar 1996 16:00:36 EST
Reply-To: Sri Vithala <svithala@INDY.NET>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: Sri Vithala <svithala@INDY.NET>
Subject: Need help with PROC REPORT
Hi SAS Gurus,
I have the following problem,
data test;
input dept $ section $ actual budget diff;
cards;
dept1 accts 1000 1200 200
dept1 rent 1500 1500 0
dept2 accts 1200 1000 -200
dept2 rent 1400 1500 100
;
run;
I need the following structure on my proc report output.
DEPARTMENT
DEPT1 DEPT2
SECTIONS actual budget diff actual budget diff
accts 1000 1200 200 1200 1000 -200
rent 1500 1500 0 1400 1500 100
The problem I face is that
There are no computed variable or analysis variables.
The proc does not allow group variables without analysis variables below
the group variables.
All variables are display variables.
I would appriciate any sugesstion anyone can offer.
Thank you ver much.
sincerely,
sri vithala
svithala@indy.net