Using Index to search case sensitive data

dokouk

New Member
Joined
Oct 10, 2016
Messages
18
Office Version
  1. 365
Platform
  1. Windows
I need some help with a similar situation but this time I need to look up within an array.

This is the data from my main spreadsheet.

AccountAccount IdAccount IdID (18-Digit)SectorIndustry
xxx PLC0014L00000CLxzXQAT0014L00000CLxzXa084L000006tN3VQAUReal EstateReal Estate Management & Development

I have Account ID from 3rd cell stored in another spreadsheet and I want to return the details in column 6 ie steel

SedolAccount NameAccount IDISINCountrySectorIndustry
xxxxxxxxxxxxxx0014L00000CLzLkAustraliaSTEEL

I tried to use a variation based on =INDEX(Data!N:N,MATCH(TRUE,EXACT(F2,Data!N:N),0)) but this doesn't take into account arrays? Can you help?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
You could also use this:
Excel Formula:
=FILTER(Data!N:N,EXACT(F2,Data!N:N))
I advise not to use entire column references and to convert your range to a table and point to the table column.
"If it looks like a table, format as table"
 
Upvote 0
You could also use this:
Excel Formula:
=FILTER(Data!N:N,EXACT(F2,Data!N:N))
I advise not to use entire column references and to convert your range to a table and point to the table column.
"If it looks like a table, format as table"
Sorry I posted the wrong formula; the formula I'm using is =INDEX('account sedol etc.csv'!$C:$F,MATCH(TRUE,EXACT(C2,'account sedol etc.csv'!$C:$F),4))

Also I have about several thousand lines to apply this formula to.
 
Upvote 0
Probably better to start using power query to:
- Pull in that CSV
- Join the resulting table with the other table using an exact match
 
Upvote 0

Forum statistics

Threads
1,215,133
Messages
6,123,233
Members
449,092
Latest member
SCleaveland

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