ACC: Formatting Immediate IF (IIF) Statements in Reports (106184)
The information in this article applies to:
- Microsoft Access 1.0
- Microsoft Access 1.1
- Microsoft Access 2.0
This article was previously published under Q106184
Moderate: Requires basic macro, coding, and interoperability skills.
SYMPTOMS
If a report that is based on a query contains a field that includes a null
value from an Immediate If (IIf) statement, you will not be able to
format the field properly on the report.
RESOLUTION
There are two ways to work around this behavior. The first method is to
format the IIf expression in the query. You can add a format statement to
the beginning of the IIf statement. For example, the following statement
would add formatting to the field:
Format(IIF([freight] = 32.07,[freight],null),"$0.00")
The second method is to use the IIf statement on the report directly, and
not in the query. For example, you could add the following statement to the
ControlSource property of the expression field's text box:
=Format(IIF([freight]=32.07,[freight],null),"$0.00")
STATUS
This behavior no longer occurs in Microsoft Access version 7.0.
Modification Type: | Major | Last Reviewed: | 5/6/2003 |
---|
Keywords: | kbfix kbprb kbusage KB106184 |
---|
|