Accessors,
I want to figure out how to formulate a calculated field properly that would look for records that has at least 'annual report' in a specific field.
For example, a record with a field ([DocumentType]) with "2013 annual report", another record with a field ([DocumentType]) with "2012 annual report" and then I would like to count in those records and exclude the other records.
Here is the formula I wrote:
Code:
Report: IIf([TABLE]![DocumentType]<>"Annual Report",[TABLE]![Name],"")
Maybe I am using the wrong operator or something....?