I have run the following code below to make gender display male and female and if its 1 display yes and 0 = no what i want to do is in one table add a extra column that would display the original value of the formatted data.Every time i try adding the coloumn OrgGender and OrgMarried it gives me error messages. PROC FORMAT; VALUE FMTMARRIED 0="No" 1="Yes"; VALUE $FMTGENDER "F" = "Female" "M" = "Male"; RUN; PROC PRINT DATA="/folders/myfolders/CourseWork/SURVEY"; VAR SUBJECT MARRIED GENDER; FORMAT MARRIED FMTMARRIED. GENDER $FMTGENDER.; RUN;
... View more