Index/Match returning #N/A

sloany101

New Member
Joined
Jan 7, 2023
Messages
35
Office Version
  1. 365
Hello all , i am having some difficulty getting an index/match formula to work across 2 sheets , sheet 1 is a database with personnel info , sheet 2 is a daily POB where when i type in a personnels name in cell c3 i want to return their company they work for in cell f3 and so forth , but when i put the formula in the array portion of index doesnt even seem to be recognized if that makes sense and i end up getting a #N/A below is the current formula i have after reading a few forum posts.

=INDEX('Personnel Info'!$C$3:$AC$100,MATCH(C3,'Personnel Info'!$A$3:$AB$100,1),)

i have vlookup formulas for this that work wonderfully , but they have caused the entire file slow to open trying to find an alternative less volatile function to achieve this , perhaps a VBA function idk .

i can post more info if needed
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

Also what column is the name in on the Personnel Info sheet?
 
Upvote 0
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

Also what column is the name in on the Personnel Info sheet?
Will do , thanks , the name is in columns A&B as they are merged all the way down
 
Upvote 0
Try
Excel Formula:
=INDEX('Personnel Info'!$C$3:$C$100,MATCH(C3,'Personnel Info'!$A$3:$A$100,0))
 
Upvote 0
Solution

Forum statistics

Threads
1,223,911
Messages
6,175,326
Members
452,635
Latest member
laura12345

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