Hi, I have a table ACT_TYPE_SC that I am trying to query, it has many possibilities but I want to check for certain criteria ie the word "Delay" and if none are found return a zero as this is used later on. I have tried Nz, Isnull but can get no joy only a blank space, please help the complete novice !! thanks
Attempts;
or
or
all with Criteria: Like "Delay*"
Attempts;
Code:
Field:Nz([SA_ACT_TYPE.ACT_TYPE_SC],"0")
Code:
Field:Count(*(Nz([SA_ACT_TYPE.ACT_TYPE_SC],0)))
Code:
Field:IIf(IsNull([SA_ACT_TYPE].[ACT_TYPE_SC]),0)
Comment