Index match function

Tip Tucci

New Member
Joined
Dec 28, 2018
Messages
2
Sheet1
In B column I have VBA autocomplete drop down list. As soon as I choose product in B10 cell, I want that in C10 copies product code, and D10 description. Full table is in Sheet2. I need data in Sheet1.

Please help me with INDEX MATCH formula.

Sheet2
ABC
1Product nameProduct codedescription
2
3

<tbody>
</tbody>
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
maybe

Book1
ABC
1Product NameProduct CodeDescription
2item7it77th
3item4it44th
4  
Sheet1
Cell Formulas
RangeFormula
B2=IF(ISBLANK(A2),"",INDEX(Sheet2!$B$2:$B$12,MATCH(A2,Sheet2!$A$2:$A$12,0)))
B3=IF(ISBLANK(A3),"",INDEX(Sheet2!$B$2:$B$12,MATCH(A3,Sheet2!$A$2:$A$12,0)))
B4=IF(ISBLANK(A4),"",INDEX(Sheet2!$B$2:$B$12,MATCH(A4,Sheet2!$A$2:$A$12,0)))
C2=IF(ISBLANK(A2),"",INDEX(Sheet2!$C$2:$C$12,MATCH(A2,Sheet2!$A$2:$A$12,0)))
C3=IF(ISBLANK(A3),"",INDEX(Sheet2!$C$2:$C$12,MATCH(A3,Sheet2!$A$2:$A$12,0)))
C4=IF(ISBLANK(A4),"",INDEX(Sheet2!$C$2:$C$12,MATCH(A4,Sheet2!$A$2:$A$12,0)))



Book1
ABC
1Product NameProduct CodeDescription
2item1it1first item
3item2it22nd item
4item3it33rd
5item4it44th
6item5it55th
7item6it66th
8item7it77th
9item8it88th
10item9it99th
11item10it1010th
12item11it1111th
Sheet2
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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