Largest Value based on Multiple criteria

A10hammond

New Member
Joined
May 8, 2019
Messages
4
Hi there,

I'm working with a data sheet and am trying to get the Nth largest value in a specific column based on multiple criteria. My single criteria formula works fine, this is it:
={LARGE(IF('Sheet1'!C:C=3,ABS('Sheet1'!W:W),""),1)}

However, I run into the #VALUE! error once I add another argument, not sure if using AND() is correct, and my version of excel doesn't have the IFS() function:
={LARGE(IF(AND('Sheet1'!C:C=3,'Sheet1'!E:E="Bank"),ABS('Sheet1'!W:W),""),1)}

Is there an error in my syntax or a correct way to do this?

Working on Windows with Excel 2016.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Try
Excel Formula:
=AGGREGATE(14,6,ABS('Sheet1'!W:W)/('Sheet1'!C:C=3)/('Sheet1'!E:E="Bank"),1)
As with anything, it would be preferable to use limited ranges instead of full columns.
 
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,696
Members
449,048
Latest member
81jamesacct

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