Forum Discussion
Abdulaziz009
Jun 13, 2024Copper Contributor
How to sum the minimum values for each Building with other conditions
Hello,
I want to sum the minimum values (Column Capacity) for each Building (column Building) for a certain process while meeting these conditions:
- The Building Status should be "Ready"
- the Tool Status should be "Ready"
I want the formula to be in one cell. For example the result of the formula will be 12 based on the below example data.
Thank you
As variant
=SUM( MINIFS($F$2:$F$8, $B$2:$B$8, UNIQUE($B$2:$B$8), $C$2:$C$8, "Ready", $E$2:$E$8, "Ready") )
- Abdulaziz009Copper Contributor
SergeiBaklan Thank you for your response. I'm using Excel 2016 which doesn't have the function UNIQUE.
I see. Not sure how to do that with one cell formula on legacy Excel. Will try to dig.