Is Reconciled and Unreconciled a "value" of the field Resonse?
You would need two queries.
One would be:
SELECT <blah, blah, blah> WHERE Response="Reconciled"
SELECT <blah, blah, blah> WHERE Response="Unreconciled"
If there is only two possible values, then you could simply test for one to
get a count and then subtract that from the total number of records and that
would be the amount of the other option
SELECT <blah, blah, blah>
(returns 180)
SELECT <blah, blah, blah> WHERE Response="Reconciled"
(returns 74 hits)
180 total responses - 74 Reconciled = 106 Unreconciled
--
Phillip Windell [MCP, MVP, CCNA]
www.wandtv.com
-----------------------------------------------------
Understanding the ISA 2004 Access Rule Processing
http://www.isaserver.org/articles/IS...cessRules.html
Microsoft Internet Security & Acceleration Server: Guidance
http://www.microsoft.com/isaserver/t...dance/2004.asp
http://www.microsoft.com/isaserver/t...dance/2000.asp
Microsoft Internet Security & Acceleration Server: Partners
http://www.microsoft.com/isaserver/partners/default.asp
Deployment Guidelines for ISA Server 2004 Enterprise Edition
http://www.microsoft.com/technet/pro...isaserver.mspx
-----------------------------------------------------
"Lee" <(E-Mail Removed)> wrote in message
news:AC2C5D8B-8A6E-4482-A79B-(E-Mail Removed)...
> Hello,
>
> I am trying to build a form. In the group footer I am running summary
> totals.
> This column called Response has two choices Unreconciled or Reconciled.
In
> my report I want to count the number of responses, unreconciled responses
and
> reconciled responses.
>
> How do I write the expression to count the Unreconciled and reconciled
> responses. For example if there is a 180 responses. =Count([Response]),
> this function counts the total responses. How do I write the expression
to
> count the two choices?
>