count if

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way, (on a report), that I can count only the original records.
For example, the starting contract is "00" the subsequent modification start
at "01" and go up. I have created a report showing all contracts and
modifications but I only want to count the originals. I still want to show
the modifications but only want to cont the originals.

Thank you in advance for and help

Steve
 
One way to do this is to create an expression using the ImmediateIF function
(IIF), iif(contract=00,1,0) then create sum expression in the footer that
sums the results of the expression.
 
Is there a way, (on a report), that I can count only the original records.
For example, the starting contract is "00" the subsequent modification start
at "01" and go up. I have created a report showing all contracts and
modifications but I only want to count the originals. I still want to show
the modifications but only want to cont the originals.

Thank you in advance for and help

Steve

=Sum(IIf([YourField] = "00",1,0))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top