please check input and output .
In output i want empty space line between span header and variable?
Please , Thanks in advance.
You want this ?
title 'xxxxxxxxxxx';
proc report data=sashelp.class nowd;
columns ("xxxxxxxx" ( '05'x name age weight height));
define name/display;
run;
Please post data in usable form and show the what you have tried so far.
Using proc report it could be possible to achieve what you want by inserting a constant into the data prior to calling proc report and using a compute before block with line statement.
You want this ?
title 'xxxxxxxxxxx';
proc report data=sashelp.class nowd;
columns ("xxxxxxxx" ( '05'x name age weight height));
define name/display;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.