I have a report that has a time field. If that value is not filled in or left blank, I want that value to be displayed at "Off" on the report. I have tried several statements but they dont work:
Nz([Arrive],"Off")
SELECT IIF(IsNull([Arrive]), 'OFF, [Arrive])
=IIF([Arrive] Is Null,OFF,[Arrive])
none of these have worked or have given errors.
Nz([Arrive],"Off")
SELECT IIF(IsNull([Arrive]), 'OFF, [Arrive])
=IIF([Arrive] Is Null,OFF,[Arrive])
none of these have worked or have given errors.