This will post the Precentage
=If(Value(A1)>1000000,A1*25%, If(Value(A1)>700000,A1*20%, If(Value(A1)>500000,A1*15%,A1*10*)
This will post Value + Precentage
=If(Value(A1)>1000000,A1+A1*25%, If(Value(A1)>700000,A1+A1*20%, If(Value(A1)>500000,A1 + A1*15%,A1+A1*10*)
Joel,
Type the following, say in column F (start in F1)
500000
700000
1000000
1500000
and in column G (start in G1)
10%
15%
20%
25%
Select the range F1:G4 and name it COMMISSIONS via the option Insert,Define,Name (or via the Name Box). When you do this, you can use COMMISSIONS in your formulas instead of $F$1:$G$4.
Now type in A2 a loan, say 697000 and enter in B2 the following formula:
=A2*VLOOKUP(A2,COMMISSIONS,2)
Aladin
Hi Joel
Here is a custom function that will make life easier. To use it simply push Alt+F11, go to Insert>Module and paste in the code:
Function MyComm(Amount As Range)
Select Case Amount
Case Is <= 500000
MyComm = Amount * 0.1
Case Is <= 700000
MyComm = Amount * 0.15
Case Is <= 1000000
MyComm = Amount * 0.2
Case Is <= 1500000
MyComm = Amount * 0.25
End Select
Push Alt+Q to return to excel. Now save.
Now in any cell put:
=MyComm(A1)
Where A1 contains the amount.
Hope this helps
Dave
OzGrid Business Applications
Push Alt+Q to return to excel. Now save.
OzGrid Business Applications