J
JD McLeod
I have a report which prints audit procedures. On this report is a subreport
which prints the findings and recommendations. The data source for the
subreport is a table called “FindingsTableâ€. The field with the finding in
that table is called “Findingâ€. Currnetly, the user has to enter into a form
each section they audited and if there were no findings, they have to enter
the word “Noneâ€. I want the report to print the word “None†for them so that
they don’t have to set up a finding. This way, they would only have to enter
something in the form if they actually had a finding. This is because, all
audit sections have to print, regardless of whether or not there are findings.
What I have tried is this. In the report field for the finding, I entered
the following
Iif(IsNull([Finding]),â€Noneâ€,[Finding])
Where [Finding] is the name of the field within the FindingsTable that I want.
It is returning the #Error on my report. Any help on the syntax or what I
am doing wrong. Initially, I realized that the control on the form was also
named Finding, but I went in and changed that and it still gives me the same
error. I also tried:
Iif([Finding]=Null,â€Noneâ€,[Finding])
Thanks.
which prints the findings and recommendations. The data source for the
subreport is a table called “FindingsTableâ€. The field with the finding in
that table is called “Findingâ€. Currnetly, the user has to enter into a form
each section they audited and if there were no findings, they have to enter
the word “Noneâ€. I want the report to print the word “None†for them so that
they don’t have to set up a finding. This way, they would only have to enter
something in the form if they actually had a finding. This is because, all
audit sections have to print, regardless of whether or not there are findings.
What I have tried is this. In the report field for the finding, I entered
the following
Iif(IsNull([Finding]),â€Noneâ€,[Finding])
Where [Finding] is the name of the field within the FindingsTable that I want.
It is returning the #Error on my report. Any help on the syntax or what I
am doing wrong. Initially, I realized that the control on the form was also
named Finding, but I went in and changed that and it still gives me the same
error. I also tried:
Iif([Finding]=Null,â€Noneâ€,[Finding])
Thanks.