I have a table as such
[TABLE="width: 500"]
PARTNO
[/td]VOLTAGE
[/td]FLA
[/td]P0153
[/td]208
[/td]3.3
[/td]P0634
[/td]208
[/td]4.5
[/td]P0783
[/td]208
[/td]6.1
[/td]P0153
[/td]460
[/td]1.5
[/td]P0634
[/td]460
[/td]2.1
[/td]P0783
[/td]460
[/td]2.8
[/td]
[/TABLE]
Notice that there are duplicates in the PARTNO column. I need to do a VLOOKUP that matches the PARTNO and VOLTAGE, then returns the FLA
Example: Find the FLA where PARTNO="P0634" and VOLTAGE=460 ---> RETURNS: FLA = 2.1
Or maybe there is another method instead of VLOOKUP?
*EDIT* A VBA Approach is also acceptable