M
mmohon
I've been racking my brain about this one, and am trying to find the
simplest solution to the problem.
My table looks like this:
Key Sip1A Sip1B Sip1C CaseType
1234 E D E A
1235 E E E B
1236 D D D A
E means they met the goal, D means they didn't meet the goal.
I want to rearrange things like this....
Group by Case Type and Count based on the values E and D....
CaseType Sip1AMet Sip1ANotMet Sip1BMet Sip1BNotMet
A 1 1 0
2
B 1 0 1
0
Etc....
Anybody got any ideas?
simplest solution to the problem.
My table looks like this:
Key Sip1A Sip1B Sip1C CaseType
1234 E D E A
1235 E E E B
1236 D D D A
E means they met the goal, D means they didn't meet the goal.
I want to rearrange things like this....
Group by Case Type and Count based on the values E and D....
CaseType Sip1AMet Sip1ANotMet Sip1BMet Sip1BNotMet
A 1 1 0
2
B 1 0 1
0
Etc....
Anybody got any ideas?