Report Calculations. Gave up after two 8 hour days trying t

mqarep

Board Regular
Joined
Mar 12, 2002
Messages
91
:rolleyes:
I have a report that keys off a parameter query for a date range.
This report gives me information on my suppliers from fields such as:
*quantity received
*quantity inspected
*quantity rejected
*responsibility (my company or our supplier, ABC_Co.or Supplier)
*supplier name

My problem is having the report calculate the percent of the quantity rejected that is the responsibility of my supplier and also the same calculation for responsibility that is my company. (for the given date range.)

In English this would be something like:
sum all rejected parts where the responsibility is "Supplier" and divide by the total quantity rejected.

It may seem simple but nothing works!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Re: Report Calculations. Gave up after two 8 hour days tryi

You might find it easier if you add another unbound field to the report that does this calculation: =Iif([Responsibility]="Supplier" and [Status]="Rejected",[QtyRejected],0)
That should split out the desired items. In the report footer, place a second textbox with the formula =Sum(Iif([Responsibility]="Supplier" and [Status]="Rejected",[QtyRejected],0)).
You can now directly compare the totals.

HTH
Denis
 
Upvote 0

Forum statistics

Threads
1,221,569
Messages
6,160,557
Members
451,656
Latest member
SBulinski1975

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top