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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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