I'm trying to create a document in which I can keep a table of Product Numbers with related data in other cells on one tab that will be called up completely in another tab when I input the product number. So in Tab 1 i will have:
<table width="431" border="0" cellpadding="0" cellspacing="0"><col style="width: 86pt;" width="115"> <col style="width: 71pt;" width="94"> <col style="width: 66pt;" width="88"> <col style="width: 101pt;" width="134"> <tbody><tr style="height: 15pt;" height="20"> <td class="xl65" style="height: 15pt; width: 86pt;" width="115" height="20">Column A</td> <td class="xl65" style="border-left: medium none; width: 71pt;" width="94">Column B</td> <td class="xl65" style="border-left: medium none; width: 66pt;" width="88">Column C</td> <td class="xl65" style="border-left: medium none; width: 101pt;" width="134">Column D</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl65" style="height: 15pt; border-top: medium none;" height="20">Product ID</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Product Code</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Product SKU</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Product Description</td> </tr> </tbody></table>
Ideally I want in my second tab to be able to enter a Product ID from Column A and have the three fields to the immediate right fill in with the corresponding data from Columns B through D:
<table width="573" border="0" cellpadding="0" cellspacing="0"><col style="width: 86pt;" width="115"> <col style="width: 71pt;" width="94"> <col style="width: 66pt;" width="88"> <col style="width: 207pt;" width="276"> <tbody><tr style="height: 15pt;" height="20"> <td class="xl65" style="height: 15pt; width: 86pt;" width="115" height="20">Column A</td> <td class="xl65" style="border-left: medium none; width: 71pt;" width="94">Column B</td> <td class="xl65" style="border-left: medium none; width: 66pt;" width="88">Column C</td> <td class="xl65" style="border-left: medium none; width: 207pt;" width="276">Column D</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl65" style="height: 15pt; border-top: medium none;" height="20">Enter Product ID</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Call Up Corresponding Product Code</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Call up Corresponding Product SKU</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Call Up Corresponding Product Description</td> </tr> </tbody></table>
I presume this is a VLookup function but I'm not sure how to bring up the attached data. Any advice on how to do this would be much appreciated. Thanks.
<table width="431" border="0" cellpadding="0" cellspacing="0"><col style="width: 86pt;" width="115"> <col style="width: 71pt;" width="94"> <col style="width: 66pt;" width="88"> <col style="width: 101pt;" width="134"> <tbody><tr style="height: 15pt;" height="20"> <td class="xl65" style="height: 15pt; width: 86pt;" width="115" height="20">Column A</td> <td class="xl65" style="border-left: medium none; width: 71pt;" width="94">Column B</td> <td class="xl65" style="border-left: medium none; width: 66pt;" width="88">Column C</td> <td class="xl65" style="border-left: medium none; width: 101pt;" width="134">Column D</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl65" style="height: 15pt; border-top: medium none;" height="20">Product ID</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Product Code</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Product SKU</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Product Description</td> </tr> </tbody></table>
Ideally I want in my second tab to be able to enter a Product ID from Column A and have the three fields to the immediate right fill in with the corresponding data from Columns B through D:
<table width="573" border="0" cellpadding="0" cellspacing="0"><col style="width: 86pt;" width="115"> <col style="width: 71pt;" width="94"> <col style="width: 66pt;" width="88"> <col style="width: 207pt;" width="276"> <tbody><tr style="height: 15pt;" height="20"> <td class="xl65" style="height: 15pt; width: 86pt;" width="115" height="20">Column A</td> <td class="xl65" style="border-left: medium none; width: 71pt;" width="94">Column B</td> <td class="xl65" style="border-left: medium none; width: 66pt;" width="88">Column C</td> <td class="xl65" style="border-left: medium none; width: 207pt;" width="276">Column D</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl65" style="height: 15pt; border-top: medium none;" height="20">Enter Product ID</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Call Up Corresponding Product Code</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Call up Corresponding Product SKU</td> <td class="xl65" style="border-top: medium none; border-left: medium none;">Call Up Corresponding Product Description</td> </tr> </tbody></table>
I presume this is a VLookup function but I'm not sure how to bring up the attached data. Any advice on how to do this would be much appreciated. Thanks.