Hi SAS coders,
I am trying to do a PROC REPORT and ran into this error: " ERROR 79-322: Expecting a CONTENTS."
My code is
PROC REPORT DATA = HYPANL.HYPANALYSIS1_20231116 SPLIT = '/';
COLUMNRaceCd N SBP DBP;
DEFINETxNm/ 'Race Code';
DEFINEN/ GROUP;
DEFINESBP/ ANALYSIS MEAN FORMAT = 4.1 'MEAN';
DEFINESBP/ STD = 'STD';
DEFINEDBP/ ANALYSIS MEAN FORMAT = 4.1 'MEAN';
DEFINE DBP / STD = 'STD';
RUN;
I attached a ss to show where it says the error.
I don't know what this error means.