need a count

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

Guest

hey all,

i have a report of open orders with their order details. I built the report
over a query. how do i get a count of the open orders in my report? when i
try it over the order number (=Count([OrderNumber])) it counts all the
details as well.

Thanks,
rodchar
 
How would you test for an open order? A stab in the dark would be an
expression like:

=Sum( Abs( [Status]="Open" ) )
 
Back
Top