Whats up Daniwebbers, heres my issue:
I gotta .asp file, opened it up in VS2010. The report is having an issue with totaling up a column and displaying it. The report generates perfectly, but when I look at the USED TOTAL cell at the end of the report, it is displaying #####.
This seems unusual as the report worked previously and the cell is stretched from the middle of the screen all the way to the right. But here is the code for the table that holds the USED COUNT total and the USED TOTAL(USED COUNT = how many people; USED TOTAL = sum up everyones value and display):
<table border="0" align="center" cellpadding="0" cellspacing="0"
style="width: 755px">
<tr>
<td><div align="right" class="style10">
<% response.write "Credit Count: " & i %>
</div></td>
(I THINK MY ISSUE IS WITH THE CODE BELOW)
<td> <span class="style10">
<% response.write "Credit Total: " & FormatCurrency(varCreditTotal*-1,2) %>
</span></td>
</tr>
</table>
If anyone can enlighten me on this issue I would greatly appreciate it as I am not an HTML expert but came here to collaborate the issue with you guys:) Thanks in advance.