• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Minimum amount to be shown from multiple data sheets

shaggy72

New Member
Hi , help.

I looking for help with the following problem. Attached is copy of a document we use to record output in production area.
Question.
Howe do I get the following to show the minimum amount?

=SUMIF('Line data'!C5:C133,'Line Data Weekly'!A6,'Line data'!I5:I133) this shows the total amount.
But I am looking to show the minimum figure excluding blanks and zero's.

Help please :(
 

Attachments

  • Copy of Drysdale Swedes Data units per minute test Arthur.xls
    151 KB · Views: 6
Awesome - thank you for this.

With this formula combined with " Control + Shift + Enter" this works prefect.

Star :)
 
Hi Sam,
Lil bit curious.. Do you have any specific reason for outer SumProduct..

{=MIN(IF('Line data'!I5:I133*('Line data'!C5:C133='Line Data Weekly'!A6),'Line data'!I5:I133))}
 
Or a pivot table! :D
 

Attachments

  • Drysdale Swedes Data units per minute test Arthur.xlsx
    70.7 KB · Views: 4
Hi,
I am sure Sam will agree that the following simplification would also work:
=MIN(IF('Line data'!C5:C133='Line Data Weekly'!A6,'Line data'!I5:I133))

entered with Ctrl + Shift + Enter

Cheers
Sajan.
 
Just a note:
I think the arrays in the formula's should get a fixed row reference. So: C5:C133 --> C$5:C$133 etc.
 
Deb, no reason for SUMPRODUCT. You are right, it wasn't required.

Sajan, Shaggy mentioned that he wanted to exclude 0s and Blanks. So I thought that was a quick way to cover for that.
 
Thanks for that clarification Sam and Debraj about 0s and blanks in the range to calculate.

-Sajan.
 
Back
Top