obulldog27
Programmer
I have a column on a datareport in vb6.0 data environment that has some zero amounts($0.00) and non zero amounts($10.00, $15.00). I am trying to make all zero amts appear as blank.This works when creating a query in ms access query design(sql) but is not working through vb6.0 sp6 DE with ms access as the backend. I get the error too few parameters expected 1. I am using the following sql code in the DE command properties.
Code:
select info.spaceno, info.name,
IIf(info.rvcharge=0," ",info.rvcharge) as rvcharge
from info order by info.spaceno