Get the Max and Min Value based on criteria

Status
Not open for further replies.

MagsinoAS13

New Member
Joined
Jul 9, 2018
Messages
6
Please help me look for a formula to get the maximum and minimum value based on certain criteria.
Thanks.

ClientCampaignSentUnique OpensOpens rate
Product1Campaign1201470.00%
Product1Campaign2181161.11%
Product1Campaign310880.00%
Product1Campaign49666.67%
Product1Campaign55172214041.86%
Product1Campaign61298565.89%
Product1Campaign75360.00%
Product1Campaign813028706155.16%
Product1Campaign99407523456.69%
Product1Campaign10107253652.09%

<tbody>
</tbody>

Result:
ClientSheetMin OpenMax Open
Client Name1Product141.86%56.69%
Client Name2Product2

<tbody>
</tbody>

Criteria: Sent value should be more than 1,000 then I need to get the max and min value. In this case, we have 4 rows with more than 1000. And the Min is 41.86% and 56.69%.
However, If the sent has no value that is more than 1000, then we just get the Max and Min values, 80.00% and 41.86%.

Thank you so much.
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Please help me look for a formula to get the maximum and minimum value based on certain criteria.
Thanks.

ClientCampaignSentUnique OpensOpens rate
Product1Campaign1201470.00%
Product1Campaign2181161.11%
Product1Campaign310880.00%
Product1Campaign49666.67%
Product1Campaign55172214041.86%
Product1Campaign61298565.89%
Product1Campaign75360.00%
Product1Campaign813028706155.16%
Product1Campaign99407523456.69%
Product1Campaign10107253652.09%

<tbody>
</tbody>

Result:
ClientSheetMin OpenMax Open
Client Name1Product141.86%56.69%
Client Name2Product2

<tbody>
</tbody>

Criteria: Sent value should be more than 1,000 then I need to get the max and min value. In this case, we have 4 rows with more than 1000. And the Min is 41.86% and 56.69%.
However, If the sent has no value that is more than 1000, then we just get the Max and Min values, 80.00% and 41.86%.

Thank you so much.
What if there is only one "more then 1000" value and the rest are less? Should it be considered as Max or Min?
 
Last edited by a moderator:
Upvote 0
for Min try:
Code:
=MIN(IF(C2:C11>=1000,E2:E11))
Code:
=MAX(IF(C2:C11>=1000,E2:E11))

paste these formula on there respective destinations and CTRL+SHIFT Enter as this is an array formula.

note: just remove the = sign if you don't want 1000 to be counted.
 
Last edited:
Upvote 0
Yes, this will work. However, I have a second condition.
If the sent has no value that is more than 1000, then we just get the Max and Min values, 80.00% and 41.86%.
 
Upvote 0
Yes, that is correct. And take note of this condition....If the sent has no value that is more than 1000, then we just get the Max and Min values, 80.00% and 41.86%.

What if there is only one "more then 1000" value and the rest are less? Should it be considered as Max or Min?
 
Upvote 0
Yes, that is correct. And take note of this condition....If the sent has no value that is more than 1000, then we just get the Max and Min values, 80.00% and 41.86%.

Sorry, I am not sure that I asked the question correctly. What happens if there is only one value more than 1000?
 
Last edited by a moderator:
Upvote 0
Sorry, I am not sure that I asked the question correctly. What happens if there is only one value more than 1000?

I take that as the Max Open If there is only one value more than 1000. Then for the Min Open, we just get the min value out of all.
 
Upvote 0
Please do not post the same question multiple times. Questions of a duplicate nature will be locked or deleted, per #12 of the Forum Rules and points 6 & 7 of the Forum Use Guidelines.

I have closed this one as the other one has a response that you have accepted, though I am not sure that agrees with what you have said in post #8 here.

Any bumps, clarifications, or follow-ups should be posted to the linked thread.
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

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