A B C 1 PROD1 TYPE1 VAL1 2 PROD2 TYPE1 VAL2 3 PROD1 TYPE2 VAL3 4 PROD2 TYPE3 VAL2
In an empty cell I want to get th
Have a look at using the DGET Excel function.
Set
Then your provided data in A2:C5
Then
=PROD2
=TYPE3
And lastly, in H3:
=DGET(A1:C5,"Val",H1:I2)
That should get the value for you.