Hi All, i have a dataset as below.
data dummy; length col1 $200; col1="BASELINE Heart Rate";output; col1='PLACEBO-CONTROLLED Heart Rate';output; col1='WEEK 2 Heart Rate';output; col1='WEEK 4 Heart Rate';output; col1='WEEK 8 Heart Rate';output; col1='WEEK 12 Heart Rate';output; col1='WEEK 18 Heart Rate';output; col1='BASELINE SYSBP';output; col1='PLACEBO-CONTROLLED SYSBP';output; col1='WEEK 2 SYSBP';output; col1='WEEK 4 SYSBP';output; col1='WEEK 8 SYSBP';output; col1='WEEK 12 SYSBP';output; col1='WEEK 18 SYSBP';output; col1='BASELINE DIABP';output; col1='PLACEBO-CONTROLLED DIABP';output; col1='WEEK 2 DIABP';output; col1='WEEK 4 DIABP';output; col1='WEEK 8 DIABP';output; col1='WEEK 12 DIABP';output; col1='WEEK 18 DIABP';output; RUN;
I would like to insert 1 blank row each below the rows PLACEBO-CONTROLLED Heart Rate, PLACEBO-CONTROLLED SYSBP, PLACEBO-CONTROLLED DIABP.
how this can be achieved, please suggest, I heard call missing would work, but unable to do so.
... View more