Hi,
I'm trying to use IDEX/MATCH lookup from an Excel sheet like the one below:
I want to be able to get the price amount by searching the country, service, and weight; so I will have the weight numbers listed down different rows and the shipping carriers going across the top with the country name on one cell like A1=Australia
Does anyone know how I would be able to do this with INDEX/MATCH lookup with searching these 3 criteria?
Thank you!
I'm trying to use IDEX/MATCH lookup from an Excel sheet like the one below:
Code:
[table]
[tr]
[th]Country[/th]
[th]Weight[/th]
[th]Service[/th]
[th]Price[/th]
[/tr]
[tr]
[td]Australia[/td]
[td]1[/td]
[td]Shipping Carrier # 1[/td]
[td]10[/td]
[/tr]
[tr]
[td]Australia[/td]
[td]1[/td]
[td]Shipping Carrier # 2[/td]
[td]15[/td]
[/tr]
[tr]
[td]Australia[/td]
[td]1[/td]
[td]Shipping Carrier # 3[/td]
[td]20[/td]
[/tr]
[tr]
[td]Australia[/td]
[td]2[/td]
[td]Shipping Carrier # 1[/td]
[td]10[/td]
[/tr]
[tr]
[td]Australia[/td]
[td]2[/td]
[td]Shipping Carrier # 2[/td]
[td]15[/td]
[/tr]
[tr]
[td]Australia[/td]
[td]2[/td]
[td]Shipping Carrier # 3[/td]
[td]20[/td]
[/tr]
[tr]
[td]Belgium[/td]
[td]1[/td]
[td]Shipping Carrier # 1[/td]
[td]10[/td]
[/tr]
[tr]
[td]Belgium[/td]
[td]1[/td]
[td]Shipping Carrier # 2[/td]
[td]15[/td]
[/tr]
[tr]
[td]Belgium[/td]
[td]1[/td]
[td]Shipping Carrier # 3[/td]
[td]20[/td]
[/tr]
[tr]
[td]Belgium[/td]
[td]2[/td]
[td]Shipping Carrier # 1[/td]
[td]10[/td]
[/tr]
[tr]
[td]Belgium[/td]
[td]2[/td]
[td]Shipping Carrier # 2[/td]
[td]15[/td]
[/tr]
[tr]
[td]Belgium[/td]
[td]2[/td]
[td]Shipping Carrier # 3[/td]
[td]20[/td]
[/tr]
[/table]
Code:
Australia
[table]
[tr]
[th]Weight[/th]
[th]Shipping Carrier # 1[/th]
[th]Shipping Carrier # 2[/th]
[/tr]
[tr]
[td]1[/td]
[td]10.00[/td]
[td]10.00[/td]
[/tr]
[tr]
[td]2[/td]
[td]10.00[/td]
[td]10.00[/td]
[/tr]
[tr]
[td]3[/td]
[td]10.00[/td]
[td]10.00[/td]
[/tr]
[tr]
[td]4[/td]
[td]10.00[/td]
[td]10.00[/td]
[/tr]
[/table]
Does anyone know how I would be able to do this with INDEX/MATCH lookup with searching these 3 criteria?
Thank you!