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

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
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,213,495
Messages
6,113,992
Members
448,538
Latest member
alex78

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