I want to lookup sheet 'Product' and grab the Approval status and input it into column B of sheet 'Non Variant'. Obviously matching the correct article number.
- Snippet of Non Variant Sheet
- Snippet of Product Sheet
I want to lookup sheet 'Product' and grab the Approval status and input it into column B of sheet 'Non Variant'. Obviously matching the correct article number.
Using INDEX(MATCH())
you'll get what you want, just set the range right:
=INDEX(Product!$A$4:$A$8,MATCH($A2,Product!$B$4:$B$8,0))