This could be for a form or report.
I seem to be having trouble getting this to work, chances are I'm not
putting it in the right place. I take it that for this to work it needs to
go
in the Status field, so if Date Closed = Null then Status = Open or if
Date
Closed = Not Null then Status = Closed - all seems simple enough, just not
as
simple as I feel by not being able to get my head round it
Brendan Reynolds said:
IIf(IsNull([Date Closed]), "Open", "Closed")
Alternatively, if it is possible for 'Date Closed' to contain an empty
string, the following will handle both Null values and empty strings ...
IIf(Len([Date Closed] & "") = 0, "Open", "Closed")
--
Brendan Reynolds
Access MVP
Paul said:
Two Fields "Date Closed" and "Status"
When "Date Closed" has no entry I need Status to display Open. When
Date
Closed has an entry I want it to display Closed. Just remind me how I
do
it
again