INDEX MATCH

j4ymf

Well-known Member
Joined
Apr 28, 2003
Messages
741
Office Version
  1. 365
Platform
  1. Windows
Hello All

please could you help me change this formula

VBA Code:
=IFNA(INDEX(Download!$J$2:$J$9999,MATCH(B67&"|"&A67,INDEX(Download!$F$2:$F$9999&"|"&Download!$Q$2:$Q$9999,0),0)),"")

A67 = £0.00

how do i change it to look for a blank cell as well

ho do i replace the &A67 with {"£0.00",0,""}

Thank you Jason
 

Attachments

  • Annotation 2020-07-11 075403.jpg
    Annotation 2020-07-11 075403.jpg
    9.5 KB · Views: 6

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Maybe something like

=IFERROR(INDEX(Download!$J$2:$J$9999,AGGREGATE(15,6,ROW(Download!$J$2:$J$9999)/(Download!$F$2:$F$9999=B67)/((Download!$Q$2:$Q$9999=A67)+(Download!$Q$2:$Q$9999="")),1)),"")

Note that this uses different methods to your old formula, it may well work without the last array, i.e.

=IFERROR(INDEX(Download!$J$2:$J$9999,AGGREGATE(15,6,ROW(Download!$J$2:$J$9999)/(Download!$F$2:$F$9999=B67)/(Download!$Q$2:$Q$9999=A67),1)),"")
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,196
Members
449,072
Latest member
DW Draft

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