Dear SAS Supporting Community!
I'd appreciated it id someone help me troubleshooting this problem:
I'm writing a code for establishing frequency description of a categorical variable in a survey data with complex sampling design. My code was like this
proc surveyfreq data=file name you have;
tables name of categorical variable;
    domain name of domian variable;  
    strata  name of strata variable;
   cluster name of cluster variable;
   weight  weighting variable;
     
I got a syntax error. I think it could be that I placed domain statement before the (strata, cluster and weight) statements. Anyone could suggest other reasons for that error please?>
Thank You,