Index Match with criteria

pedexe90

Board Regular
Joined
Apr 18, 2018
Messages
59
Hi everyone,

I need help improving a formula. This is the current format of my formula : =IFERROR(INDEX($G$3:$G$137,MATCH(I3,$B$3:$B$137)*($G$3:$G$137>0),0),"")

What I need is to match a date between column I adn B and to return Values from G only if there is a value. Dates are repeated in column B. Column I has dates in order and sequence so for example 01/12/2017 + 1.


1Entry DateTransaction Details2Transaction TypePayment AmountReceipt AmountLedger Balance
01/12/2017TRANSFER 00113689Transfer88,176.43 1,968,422.17
04/12/2017TRANSFER 83462862Transfer 750.00
04/12/2017TRANSFER 00113689Transfer 860.35
04/12/2017INTEREST PAID GROSS FOR PERIOD TO 1DECCredit 1,302.691,971,335.21
05/12/2017TRANSFER 83462862Transfer 250.00
05/12/2017TRANSFER 00113689Transfer542,525.93 1,429,059.28
06/12/2017TRANSFER 83462862Transfer 1,497.50
06/12/2017TRANSFER 00113689Transfer3,511.38 1,427,045.40
07/12/2017TRANSFER 83462862Transfer 750.00

<colgroup><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Maybe this... Control+shift+enter:

=IFERROR(INDEX($G$3:$G$137,MATCH(I3,IF(ISNUMBER(G$3:$G$137),
$B$3:$B$137),0)),"")
<strike></strike>
 
Upvote 0

Forum statistics

Threads
1,215,746
Messages
6,126,650
Members
449,326
Latest member
asp123

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