I have the following columns,
Goal Status which is either Not at Goal or At Goal
Run Status which is either Behind or Ahead
I want to do a summary table like :
<table border="0" cellpadding="0" cellspacing="0" width="221"><col style="width: 78pt;" width="104"> <col style="width: 50pt;" width="67"> <col style="width: 38pt;" width="50"> <tbody><tr style="height: 12pt;" height="16"> <td class="xl65" style="height: 12pt; width: 78pt;" width="104" height="16">Overall</td> <td class="xl65" style="border-left: medium none; width: 50pt;" width="67">Pacing</td> <td class="xl65" style="border-left: medium none; width: 38pt;" width="50">
</td> </tr> <tr style="height: 12pt;" height="16"> <td class="xl66" style="height: 12pt; border-top: medium none;" height="16">Not At Goal</td> <td class="xl67" style="border-top: medium none;">Behind</td> <td class="xl68" style="border-top: medium none;"> </td> </tr> <tr style="height: 12pt;" height="16"> <td class="xl69" style="height: 12pt;" height="16"> </td> <td class="xl70">Ahead</td> <td class="xl71"> </td> </tr> <tr style="height: 12pt;" height="16"> <td class="xl66" style="height: 12pt; border-top: medium none;" height="16">At Goal</td> <td class="xl67" style="border-top: medium none;">Behind</td> <td class="xl68" style="border-top: medium none;"> </td> </tr> <tr style="height: 12pt;" height="16"> <td class="xl69" style="height: 12pt;" height="16"> </td> <td class="xl70">Ahead</td> <td class="xl71"> </td> </tr> </tbody></table>I basically want the number of not at goal and behind, not at goal and ahead, etc
Goal Status which is either Not at Goal or At Goal
Run Status which is either Behind or Ahead
I want to do a summary table like :
<table border="0" cellpadding="0" cellspacing="0" width="221"><col style="width: 78pt;" width="104"> <col style="width: 50pt;" width="67"> <col style="width: 38pt;" width="50"> <tbody><tr style="height: 12pt;" height="16"> <td class="xl65" style="height: 12pt; width: 78pt;" width="104" height="16">Overall</td> <td class="xl65" style="border-left: medium none; width: 50pt;" width="67">Pacing</td> <td class="xl65" style="border-left: medium none; width: 38pt;" width="50">
</td> </tr> <tr style="height: 12pt;" height="16"> <td class="xl66" style="height: 12pt; border-top: medium none;" height="16">Not At Goal</td> <td class="xl67" style="border-top: medium none;">Behind</td> <td class="xl68" style="border-top: medium none;"> </td> </tr> <tr style="height: 12pt;" height="16"> <td class="xl69" style="height: 12pt;" height="16"> </td> <td class="xl70">Ahead</td> <td class="xl71"> </td> </tr> <tr style="height: 12pt;" height="16"> <td class="xl66" style="height: 12pt; border-top: medium none;" height="16">At Goal</td> <td class="xl67" style="border-top: medium none;">Behind</td> <td class="xl68" style="border-top: medium none;"> </td> </tr> <tr style="height: 12pt;" height="16"> <td class="xl69" style="height: 12pt;" height="16"> </td> <td class="xl70">Ahead</td> <td class="xl71"> </td> </tr> </tbody></table>I basically want the number of not at goal and behind, not at goal and ahead, etc