Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with count function

Status
Not open for further replies.

RJL1

Technical User
Oct 3, 2002
228
0
0
US
I have a report thatlists all of the open orders from previous days. One of the field in the report is ship_carrier. I would like to add a breakdown of how many of each different type of carrier the report includes. I can get the overall total but not the total for each specific carrier. Iget the overall total by using =Count([ship_carrier]) in the report footer. Is there a way that I can count the total of each different carrier. For example total for UPS Ground

Thanks in advance
Ricardo
 
Use the DCount method.
=DCount("ship_carrier","UnderlyingQueryNameHere","ShipperName = 'UPS'")
 
It Works It Works

Thanks
Ricardo
 
Never mind Paul it works Thank you very much,you really helped me.

Thanks a lot.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top