I've been asked to run some reports and I'm having some difficulties.
Looking at the code below, we surveyed 1200 people from 32 different regions. The surveyed consisted of 24 questions. The responses ranged from 1-5 with 5 = Excellent. My managers wants a breakdown by region for each question. ie: What percentage of people from that region scored us a 1,2 and so on. The kicker is that he wants to know this breakdown by how often they contact us Weekly, monthy, daily, etc.. I have this info in a AdminContact field. So I'm really looking at each region and in each region looking at the percentage of people and then looking at how often they contact us and averaging the score for that contact period.
The below code works but for 24 questions and 32 regions I'm recieving 768 pages of statistics. Is their an easier way to do this. Or can I format it some how to lower my page count. I'm stuck and confused, any help would be appreciated...
I'm utilizing SAS 8.0
Proc Sort Data = SCO Out=SCO1;
by AdminContact Region ;
proc Freq data=work.SCO1;
proc Freq data=work.SCO1;
Tables AdminContact * RSS;
by Region;
Title 'Overall satisfaction with Regional Support Staff';
Run;
proc Freq data=work.SCO1;
Tables AdminContact * a1;
by Region;
Title 'Knowledge of loan policy and procedures';
Run;
I'm writing the above 24 times for each question
Thanks,
Mike
Looking at the code below, we surveyed 1200 people from 32 different regions. The surveyed consisted of 24 questions. The responses ranged from 1-5 with 5 = Excellent. My managers wants a breakdown by region for each question. ie: What percentage of people from that region scored us a 1,2 and so on. The kicker is that he wants to know this breakdown by how often they contact us Weekly, monthy, daily, etc.. I have this info in a AdminContact field. So I'm really looking at each region and in each region looking at the percentage of people and then looking at how often they contact us and averaging the score for that contact period.
The below code works but for 24 questions and 32 regions I'm recieving 768 pages of statistics. Is their an easier way to do this. Or can I format it some how to lower my page count. I'm stuck and confused, any help would be appreciated...
I'm utilizing SAS 8.0
Proc Sort Data = SCO Out=SCO1;
by AdminContact Region ;
proc Freq data=work.SCO1;
proc Freq data=work.SCO1;
Tables AdminContact * RSS;
by Region;
Title 'Overall satisfaction with Regional Support Staff';
Run;
proc Freq data=work.SCO1;
Tables AdminContact * a1;
by Region;
Title 'Knowledge of loan policy and procedures';
Run;
I'm writing the above 24 times for each question
Thanks,
Mike