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

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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