Hi
About the only way I could get this to function is with a UDF.
Create a module in the example workbook, and add the code
Function myfunc(po, po_rng, lista_rng, listb_rng)
Application.Volatile
myfunc = 0
For Each ce In po_rng
If ce = po Then
Set findit = lista_rng.Find(what:=ce.Offset(0, -1))
If Not findit Is Nothing Then
lista = True
listasku = ce.Offset(0, -1)
End If
End If
If ce = po Then
Set findit = listb_rng.Find(what:=ce.Offset(0, -1))
If Not findit Is Nothing Then
listb = True
listbcnt = listbcnt + 1
If ce.Offset(0, -1) = "SKU L" Then skulcnt = skulcnt + 1
End If
End If
Next ce
'If lista And listb Then myfunc = True
If lista And listb Then
Select Case listasku
Case "SKU A"
myfunc = 500
Case "SKU B"
myfunc = 1000
Case "SKU C"
myfunc = 2000
Case "SKU D"
If listbcnt = 6 And skulcnt = 0 Then
myfunc = 4000
ElseIf listbcnt > 0 And skulcnt = 1 Then
myfunc = 20000
End If
End Select
End If
End Function
Then go to the spreadsheet and in D2 enter:
=IF(COUNTIF($C$2:C2,C2)=1,myfunc(C2,$C$2:$C$26,$E$2:$E$5,$F$2:$F$8),"")
I've copied this down to D26 as I've put in some extra items to try to test the SKU D / SKU L combinations.
See how it goes.
rylo
Bookmarks