BookmarkSubscribeRSS Feed
eugeniothierry
Fluorite | Level 6

Hi,
I need to output data to xlsx in the form:
value 01 02 03
brand SK NI VG
sum1 €36.000 ... ...
dates 22.2.2022 ... ...

I can create properly every line, but I need a proc report for each. I'm using options(sheet_interval='none').
The problem is that there is a blank row between each output. Is there a way to get rid of them?
code:
Proc Report;
column text dummy value, brand;
define text / ' ' computed;
define dummy / group noprint;
define value/ across;
define brand / ' ' group;
compute text / char;
text = "brand”;
endcomp;
run;

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 0 replies
  • 549 views
  • 0 likes
  • 1 in conversation