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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Selection formula help

Status
Not open for further replies.

TimothyP

Programmer
Aug 6, 2002
135
US
I am trying to select purchase orders with multiple line items only. I do not want to report on the PO’s that only have one line item.

For example, when I group on PO the report looks something like this:

PO1
Line 1: Bread
Line 2: Butter
Line 3: Eggs

PO2
Line 1: Milk

PO3
Line 1: Pizza
Line 2: Soda
Line 3: Apples

PO4
Line 1: Orange Juice

PO5
Line 1: Water

I want my report to look like this

PO1
Line 1: Bread
Line 2: Butter
Line 3: Eggs

PO3
Line 1: Pizza
Line 2: Soda
Line 3: Apples

Any suggestions would be appreciated.

Thanks in advance for the knowledge,
Tim
 
My table looks something like this:

PO# Line# Item
PO1 1 Bread
PO1 2 Butter
PO1 3 Eggs
PO2 1 Milk
PO3 1 Pizza
PO3 2 Soda
PO3 3 Apples
PO4 1 Orange Juice
PO5 1 Water

Thanks,
Tim
 
Group on Product Order, as it seems you're currently doing.

In your Group Selection Criteria, enter:
Code:
Count({Line#},{PO#}) > 1
Naith
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top