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;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 888 views
  • 0 likes
  • 1 in conversation