Space line between span header and header?
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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.