BookmarkSubscribeRSS Feed
smackerz1988
Pyrite | Level 9

Hello,

 

I'm creating an output that requires this header layout 

smackerz1988_1-1714045922018.png

I'm using this code 

proc report data=final out=view missing nowindows split="*" contents=" ";
   column pag ("MedDRA System Organ Class /* Preferred Term" (" " aesoc))    
    ("trt (N=&trt_count.)" ("arm1*(N=&arm1_count.)" ('Subjects with TEAE*n (%)' arm1))
    ("arm2*(N=&arm2_count.)" ('Subjects with TEAE*n (%)' arm2)))
    ord;
   define pag / order  order = internal noprint ;
   define aesoc  / display " " left flow style(header)=[just=l] STYLE(column)=[&col_style asis=on cellwidth=12.00cm];
   define ord / order order =  internal noprint;   
   define arm2 / " " display   center flow STYLE(column)=[&col_style cellwidth=7.00cm];
   define arm1 / " " display center   flow STYLE(column)=[&col_style cellwidth=7.00cm];
   

    compute after pag / style ={&line_small};
        line "";
    endcomp;

    break after pag / page;

compute before _page_ / left style={&tit_style};
   line "Table 1.4.3 Severe treatment-emergent adverse events by System Organ Class and Preferred Term with incidence of >=5% in at least one arm - Separately by TPC regimen - Safety Analysis Set";   
endcomp;

	compute before ord / style ={&line_small};
		line "";		
	endcomp;

 compute after _page_ / left style={&foot_style};
   line "Notes: NE: Not evaluable; SOC: System Organ Class; PT: Preferred Term; TEAE: Treatment-emergent adverse event. Adverse events were coded using the MedDRA dictionary, Version 26.1 and graded according to NCI CTCAE v5.0.";   
endcomp;
run;

However this is my ouput 

smackerz1988_0-1714317401092.png

How am I able to make this border line for this column either not visibly or removed?

 

2 REPLIES 2
Ksharp
Super User
Did you try :
("MedDRA System Organ Class /* Preferred Term" (" " aesoc))
-->
( "09"x ("MedDRA System Organ Class /* Preferred Term" ("09"x aesoc)) )
smackerz1988
Pyrite | Level 9

Thanks for the suggestion. yeah I tried this but no luck unfortunately

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

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
  • 2 replies
  • 163 views
  • 0 likes
  • 2 in conversation