Returning a single result for a match under certain criteria

ATHlaptop

New Member
Joined
Jul 10, 2023
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi there,

I have a table with dates, cash-flow type and the cash-flow number for that cash-flow type. Here is an example:

Value date; Cash-flow type; # cash-flow
row A ; B ; C
line
1 08/11/2021 ; capital call ; 1
2 14/12/2021 ; capital call ; 2
3 03/02/2022; capital call ; 3
4 16/05/2022; capital call ; 4
5 12/09/2022; distribution ; 1
6 01/02/2023 capital call ; 5
7 09/03/2023; distribution ; 2
8 09/03/2023; distribution ; 2
9 16/06/2023; capital call ; 6
10 04/07/2023; distribution ; 3

Now, I would like to retrieve the value date corresponding to # cash-flow 2 if the cash-flow type is "distribution". I have searched in other places of this forum but the results I found were giving me a string several results while I'd like only one result. I thik i'm not using correctly the INDEX/MATCH/IF combination. Thanks for the help!
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Actually easily solved using MAXIFs, my bad, I don't konw how to delete this thread
 
Upvote 0
You can post your own solution and mark it as a solution so in future others can have the solution if they have same query.
 
Upvote 0
Actually easily solved using MAXIFs, my bad, I don't konw how to delete this thread
here is the solution found, using MAXIFS:

MAXIFS($A$1:A$10;$B$1:$B$10;"distribution";$C$1:$C$10;E2)
E2 being a cell containing "2", resulting in 09/03/2023
 
Upvote 0
Solution
As xl 2016 doesn't have the maxifs function, is your profile correct?
 
Upvote 0

Forum statistics

Threads
1,215,079
Messages
6,123,005
Members
449,092
Latest member
masterms

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