XLOOKUP MAX with several criteria

virtuosok

Board Regular
Joined
Sep 2, 2020
Messages
209
Office Version
  1. 365
Platform
  1. Windows
Hi,
I have the following formula which returns the first entry on the list matching several criteria:
Excel Formula:
=XLOOKUP(1,('CTMS export_All TemPo'!$K$2:$K$100000=$A3)*('CTMS export_All TemPo'!$D$2:$D$100000=$C$1)*('CTMS export_All TemPo'!$V$2:$V$100000="Complete"),'CTMS export_All TemPo'!$W$2:$W$100000)
How do I post process it so that it returns max value instead?
Thank you :)
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
How about
Excel Formula:
=MAX(FILTER('CTMS export_All TemPo'!$W$2:$W$100000,('CTMS export_All TemPo'!$K$2:$K$100000=$A3)*('CTMS export_All TemPo'!$D$2:$D$100000=$C$1)*('CTMS export_All TemPo'!$V$2:$V$100000="Complete")))
 
Upvote 0
Solution
Oh wow this was lightning fast and hugely helpful,
Thank you Fluff!
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,378
Members
448,955
Latest member
BatCoder

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