Das funktioniert nur bedingt - die Tabelle wird zwar angezeigt, aber die Werte werden nicht eingesetzt (getestet über PreTest-Link).
So (natürlich mit Strichen drum rum) sieht es in der Druckansicht aus:
Altersgruppe männlich weiblich Summe
0 - 6 Jahre answers('MZ04') answers('MZ05') '.$MGZ1.'
Ich habe auf der Abschluss-Seite
PHP: answersPrint('first');
PHP: // Berechnung der Werte für die Tabelle "Migliederzahlen"
$M1 = value('MGZm06', 'free');
$W1 = value('MGZw06', 'free');
$MGZ1 = $M1 + $W1;
$M2 = value('MGZm713', 'free');
$W2 = value('MGZw713', 'free');
$MGZ2 = $M2 + $W2;
$M3 = value('MGZm1417', 'free');
$W3 = value('MGZw1417', 'free');
$MGZ3 = $M3 + $W3;
$M4 = value('MGZm1826', 'free');
$W4 = value('MGZw1826', 'free');
$MGZ4 = $M4 + $W4;
$MGZmGes = $M1 + $M2 + $M3 + $M4;
$MGZwGes = $W1 + $W2 + $W3 + $W4;
$MGZGes = $MGZmGes + $MGZwGes;
(genau diesen Baustein habe ich auch bereits auf der Seite nach der Erhebung der Daten stehen gehabt, gleiches Ergebnis... )
Dann die Tabelle in
HTML:
<h3>Mitgliederzahlen:</h3>
<table width="75%"; border=""; rules="all"; cellpadding="2";>
<colgroup>
<col width="34%">
<col width="22%">
<col width="22%">
<col width="22%">
</colgroup>
<tr>
<th>Altersgruppe</th>
<th>männlich</th>
<th>weiblich</th>
<th>Summe</th>
</tr>
<tr>
<td style="vertical-align:bottom;"><b> 0 - 6 Jahre</b></td>
<td nowrap style="vertical-align:top;">answers('MZ04')</td>
<td nowrap style="vertical-align:top;">answers('MZ05')</td>
<td nowrap style="vertical-align:top;"><b> '.$MGZ1.' </b></td>
</tr>
<tr>
<td style="vertical-align:bottom;"><b> 7 - 13 Jahre</b></td>
<td nowrap style="vertical-align:top;">answers('MZ06')</td>
<td nowrap style="vertical-align:top;">answers('MZ07')</td>
<td nowrap style="vertical-align:top;"><b> '.$MGZ2.' </b></td>
</tr>
<tr>
<td style="vertical-align:bottom;"><b> 14 - 17 Jahre</b></td>
<td nowrap style="vertical-align:top;">answers('MZ08')</td>
<td nowrap style="vertical-align:top;">answers('MZ09')</td>
<td nowrap style="vertical-align:top;"><b> '.$MGZ3.' </b></td>
</tr>
<tr>
<td style="vertical-align:bottom;"><b> 18 - 26 Jahre</b></td>
<td nowrap style="vertical-align:top;">answers('MZ10')</td>
<td nowrap style="vertical-align:top;">answers('MZ11')</td>
<td nowrap style="vertical-align:top;"><b> '.$MGZ4.' </b></td>
</tr>
<tr>
<td style="vertical-align:bottom;"><b> Summe</b></td>
<td nowrap style="vertical-align:top;"><b> '.$MGZmGes.' </b></td>
<td nowrap style="vertical-align:top;"><b> '.$MGZwGes.' </b></td>
<td nowrap style="vertical-align:top;"><b> '.$MGZGes.' </b></td>
</tr>
</table>
<p><br></p>