<tr>
<td width="25%" align="right"><font class="shnText"><b>TOTAL</b></font></td>
<%
For i = 1 To 12
lGrandTotal = lGrandTotal + lTotals(i)
%>
<td width="10%" align="right"><font class="shnTextVerySmall"><b><%=objUtils.FormatString(CStr(lTotals(i)), "##,##,##0.00")%></b></font></td>
<%
Next
%>
<td width="15%" align="right"><font class="shnTextVerySmall"><b><%=objUtils.FormatString(CStr(lGrandTotal), "##,##,##0.00")%></b></font></td>
</tr>
</table>
</div>
Where in I am displaying user_names in first column of the table, under each month respective deposits made by that perticular user & finallly in the last column total deposits made till the current month.
Since I have given Div tag to the whole table, when I scroll to the right customer names will be hidden only deposit details are displayed. hence I am just planning to display customer names as it is & scroll only deposit details & total deposit, which make us easy to read deposit details for any customer.
since deposit details & total deposit are columns in the table I am finding it difficult to apply div tag seperately.
Bookmarks