Hello,
On an asp page, I'm using the FormatNumber function to format data retrieved from SQL Server. Whenever the value formatted is zero, nothing is displayed (when I display the zero value without formatting it, it *is* displayed - it is not null).
if the value in inThisYear is 0, nothing is displayed in the cell; but if I just
use inThisYear without formatting, the zero values *are* displayed.
Does anyone have an idea what the problem is?
Thanks,
Yael
On an asp page, I'm using the FormatNumber function to format data retrieved from SQL Server. Whenever the value formatted is zero, nothing is displayed (when I display the zero value without formatting it, it *is* displayed - it is not null).
Code:
intThisYear=rsMirpa(1)
-----some lines of code------
<td><font size=4><%=formatnumber(intThisYear,0)%></td>
if the value in inThisYear is 0, nothing is displayed in the cell; but if I just
use inThisYear without formatting, the zero values *are* displayed.
Does anyone have an idea what the problem is?
Thanks,
Yael