Creating An Access Report To Group Payments Of Equal Amounts

P

Probie Coder

I am new to MS Access and need to do the following:

Write a report that groups payment of equal amounts for each vendor together.

Ignore the sign (positive or negative) of the amount. Ignore groups with
only one record. For each vendor show a group header containing the vendor
number and name.

For example if the GrossAmt is $100 in one record and the GrossAmt is $-100
in another record treat that as a match.

Any assistance would be greatly appreciated!

- Thomas
 
D

Duane Hookom

Sort/Group first on Vendor. The next Sort/Group can use the expression:
=Abs(GrossAmt)
 

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

Top