I am importing a table from another app into Access97. Using a query I convert a text number to currency (ie. 5 becomes $5.00). The query also converts "NULL" to $0.00. When reporting I would like to only display $.$$ values (ie. $5.00 and NOT display $0.00/ null) in the column.<br>Here is the code from the query bulder:<br>DeckChrg: IIf(IsNull([_10]),0,CCur(([_10])))<br><br>Is there a means to convert Non-Null values only in the query -OR- to display all values except $0.00 in the report????