• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Vlookup/Lookup/Index - want to apply on entire table

smittal

Member
Dear team,

i am working on a excel dashboard where i need to do a certain operation:-

Grade Name1 Name2 Name3
A anul suresh ahima
B shweta X Y


now i have a db like which i want to fill up with grade. this table need data maping from above mentioned tabular. would request everyone please suggest for same.

grade
anul
suresh
ahmia
shweta


thanks in advance for same.
 
Last edited:
Smittal

Can you please post a sample file with a few rows of data and the format you want to get
 
=INDEX($A$2:$A$4;MAX(IF($B$2:$D$4=A7;ROW($A$2:$A$4)-ROW($A$2)+1)))

Array Formula

Pls see the file

Azumi
 

Attachments

  • Index Match.xlsx
    9.5 KB · Views: 10
You have not explained how your data is located.

Assuming below layout with data provided.

The first table [source data] is in Range A1:D3 and the second table [destination data] in E1:E5, try following formula in F2 which is based on assumption that the names are unique. And then copy down
Code:
=INDEX($A$1:$D$3,SUMPRODUCT(($A$1:$D$3=E2)*ROW($A$1:$D$3)),1)
 
Thanks all for your support.

Hui sir@ I am not able to upload file beacuse of Access Denied..
file upload by Azumi is perfect.
shrivallabha@ code is perfect but showing error when drag to other columns.

Thanks in advance for help.
 
Back
Top