You could use a UDF - place the following in a module
Function comm(xRng As range) As Double
x = xRng.Value
If x <= 100 Then
comm = x / 100 * 60
Else
If x > 100 And x <= 200 Then
comm = 60 + ((x - 100) / 100) * 70
Else
If x > 200 And x <= 300 Then
comm = 130 + ((x - 200) / 100) * 75
Else
If x > 300 And x <= 400 Then
comm = 205 + ((x - 300) / 100) * 80
Else
If x > 400 And (x - 400) > 153 Then
comm = 438
Else
If x > 400 And (x - 400) < 153 Then
comm = 285 + ((x - 400) / 100) * 153
End If
End If
End If
End If
End If
End If
End Function
The in A2 place a value e.g. 580 then in B2 place the following formula =comm(A2)
The only condition I am not clear on is what if the remainder is LESS than $153?
See attached workbook as example- Formula in B2
Bookmarks