In my tabular (format) report I would like to count only the fields with “AOT” in a column Overtime. How do I do that in the report? I know this is possible in query but for certain reasons I want to do the count on the report.
On the Report footer, I did the following in a text box but did not get the expected results.
Problem Background:
I have a column overtime with No and “AOT”
Example Display:
Overtime
No
No
AOT
AOT
NO
AOT
I wish to count only the AOT, which would obviously be 3.How do I accomplish this?
Trying this
gives me the total count ignoring the condition
Trying these
gives error
I give up.
I thought this would be somehow possible however I could not get it through.
Can someone show me a better way of handling this?
Thank you in advance
Jerry
On the Report footer, I did the following in a text box but did not get the expected results.
Code:
=count([Overtime]=”AOT”)
Problem Background:
I have a column overtime with No and “AOT”
Example Display:
Overtime
No
No
AOT
AOT
NO
AOT
I wish to count only the AOT, which would obviously be 3.How do I accomplish this?
Trying this
Code:
=count([Overtime]=”AOT”)
Trying these
Code:
=Count(where [Overtime]=”AOT”)
Code:
=Count([Overtime]Like”AOT”)
I give up.
I thought this would be somehow possible however I could not get it through.
Can someone show me a better way of handling this?
Thank you in advance
Jerry
Comment