sorry for the trouble. first program: for the input dataset, sas created a informat with the given values. second program: for the input dataset, sas created a format with the given values. in both the cases I have given fmtname,start and label only,but one time sas created a format another time sas created informat first program proc format cntlin=exposure fmtlib; * here sas created a informat from the varibles( fmtname,start and end values) run; proc format; select @exp1944fmt @exp1945fmt; run; second program proc format cntlin=control fmtlib; * here sas created a format from the varibles (fmtname,start and end values) run; proc format; select $ICDFMT; run;
... View more