data have ;
length type $ 30 ;
type='benze';
cost=3455454 ;output ;
type=' group1' ;
cost=2542345 ;output ;
type=' group2' ;
cost=452344 ;output ;
run;
ods rtf file='D:\ss\ss.rtf' ;
proc report data=have nowd ;
run;
ods rtf close ;
i create one dataset like above if i proc report like above it give rtf file like see below
|
type |
cost |
|
benze |
3455454 |
|
group1 |
2542345 |
|
group2 |
452344 |
but i want to data has some leading spaces like below
|
type |
cost |
|
benze |
3455454 |
|
group1 |
2542345 |
|
group2 |
452344 |
@thanikondharish please mark the correct solution with the solved button. Thanks!
@thanikondharish wrote:
data have ;
length type $ 30 ;
type='benze';
cost=3455454 ;output ;
type=' group1' ;
cost=2542345 ;output ;
type=' group2' ;
cost=452344 ;output ;
run;ods rtf file='D:\ss\ss.rtf' ;
proc report data=have nowd ;
run;
ods rtf close ;i create one dataset like above if i proc report like above it give rtf file like see below
type
cost
benze
3455454
group1
2542345
group2
452344
but i want to data has some leading spaces like below
type
cost
benze
3455454
group1
2542345
group2
452344
You want to add style control as follows:
proc report data=have nowd ;
define type/ display style=[asis=on];
run;
ASIS=on tells the ODS display to maintain leading spaces.
@thanikondharish please mark the correct solution with the solved button. Thanks!
@thanikondharish please mark the appropriate solution so that any future users who search will see what the correct answer was.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.