Mike Smith
Registered User.
- Local time
- Today, 12:53
- Joined
- Sep 22, 2000
- Messages
- 20
I'm trying to use the form footer to show totals of cases per agent and their value. The lines below work:
=[Agent] & " is responsible for " & Count([ID]) & " cases totalling " followed by =Sum([Amount]) and generates a line such as:
David Hall is responsible for 47 cases totalling $375,250
The sum is in a different text box that is butted up next to the previous one.
The above reports out ALL cases of any status and I want to limit it to those which are Active. I've used:
=[Agent] & " is responsible for " & Count([ID]) & " cases totalling " And ([Status]="Active") followed by =Sum([Amount]) And ([Status]="Active")
and a couple variations and have failed miserably. Any ideas???
Thanks!
=[Agent] & " is responsible for " & Count([ID]) & " cases totalling " followed by =Sum([Amount]) and generates a line such as:
David Hall is responsible for 47 cases totalling $375,250
The sum is in a different text box that is butted up next to the previous one.
The above reports out ALL cases of any status and I want to limit it to those which are Active. I've used:
=[Agent] & " is responsible for " & Count([ID]) & " cases totalling " And ([Status]="Active") followed by =Sum([Amount]) And ([Status]="Active")
and a couple variations and have failed miserably. Any ideas???
Thanks!