I've tried to modify the SQL atatement to do this but all efforts proved unsucessful. So i tried this...
<%FormatCurrency(FP_FieldVal(fp_rs,"TotalNet"))% >
That worked, but when the field contained a null I would recieve a
VB Script error...
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'FormatCurrency'
/test1.asp, line 26
So I tried this next...
<%If FP_FieldVal(fp_rs,"TotalNet") > NULL Then Response.write FormatCurrency(FP_FieldVal(fp_rs,"TotalNet"))%>
It looked like it worked at first but I later found that it returns nothing even if there is something to return.
So my brain is fried... Can anyone see what I am doing wrong here?