When using a summary with HTML in a query, previously you could define a table in the summary.
In V6, if you define a table with the width set to the width of the query, the table will not cover the full width of the query, instead the table will be cut off, and not display correctly.
Example of HTML summary that previously worked perfectly and now no longer does in V6:
<table border="0" bordercolor="#FFFFFF" style="color:#000000; background-color:#F5F5F5;text-align:right;" width="1115px" cellpadding="0" cellspacing="0">
<tr style="color:#FFFFFF; background-color:#375f85">
<td width="214px" height="20px" style="text-align:left;" >Totals:</td>
<td width="99px" height="20px">Forecast Target</td>
<td width="99px" height="20px">Forecast Total</td>
<td width="109px" height="20px">Order MTD</td>
<td width="99px" height="20px">This Mth</td>
<td width="99px" height="20px">Next Month</td>
<td width="99px" height="20px">Month 3</td>
<td width="99px" height="20px">Month 4</td>
<td width="99px" height="20px">Month 5</td>
<td width="99px" height="20px">Month 6+</td>
</tr>
<tr style="color:#FFFFFF; background-color:#375f85">
<td width="214px" height="20px"> </td>
<td height="20px">$<<SUM Forecasts.TargetS3>></td>
<td height="20px">$<<SUM Forecasts.Total>></td>
<td height="20px">$<<SUM Forecasts.OrderMTD>></td>
<td height="20px">$<<SUM Forecasts.Mth1>></td>
<td height="20px">$<<SUM Forecasts.Mth2>></td>
<td height="20px">$<<SUM Forecasts.Mth3>></td>
<td height="20px">$<<SUM Forecasts.Mth4>></td>
<td height="20px">$<<SUM Forecasts.Mth5>></td>
<td height="20px">$<<SUM Forecasts.Mth6Plus>></td>
</tr>
</table>