Multiple condition in sales commission table

Dsunil05

New Member
Joined
Feb 20, 2015
Messages
34
Office Version
  1. 2021
  2. 2019
  3. 2013
  4. 2007
  5. 2003 or older
Platform
  1. Windows
SAVING A/CCOMISSION AMOUNTFD A/CCOMISSION AMOUNT
100100
2540025400
350350
5040050900
650650
700700
75400751500

<tbody>
</tbody>

THIS SALE COMMISSION TABLE OF BANK

1.) IN FIRST TABLE HOW COMMISSION REFLECT SAME IN "COMMISSION AMOUNT COLUMN" WHEN A/C COMES IN MULTIPLE OF 25 ( OR ANY OTHER MULTIPLE OF NUMBER)
I TRIED THIS FOR "B" COLUMN = IF (A3/25>=1,400,0)
BUT B4 TO B8 SHOWING 400


2.)IN SECOND TABLE HOW COMMISSION REFLECT DIFFERENT IN "COMMISSION AMOUNT COLUMN" WHEN A/C COMES IN MULTIPLE OF 25 ( OR ANY NUMBER)

IN SECOND TABLE EVERY TIME CHANGE COMMISSION AMOUNT WHEN FD A/C COMES IN MULTIPLE OF 25 ( OR ANY OTHER MULTIPLE OF NUMBER)

WHAT TO DO?

GUIDE ME WITHOUT USING VBA / MACRO I AM USING MS EXCEL 2007
 
Last edited:

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Try:

ABCDE
1SAVING A/CCOMISSION AMOUNTFD A/CCOMISSION AMOUNT
2100100
32540025400
4350350
55040050900
6650650
7700700
875400751400

<colgroup><col style="width: 25pxpx"><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet11

Worksheet Formulas
CellFormula
B2=IF(MOD(A2,25)=0,400,0)
E2=IF(MOD(D2,25)=0,400+(INT(D2/25)-1)*500,0)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>



To check to see if a number is a multiple of 25, use MOD. MOD returns the remainder when you divide by 25 (or some other number), so when the remainder is 0, it's a multiple. For the second formula, I don't know how you intend to change the amounts, so the formula I created starts at 400 and adds 500 each time. It doesn't match your example, so if you have a different method, let me know and I'll adapt it.
 
Upvote 0
Hi,

This is my take on it.

Please note Column E commission is not linear.


Book1
ABCDEF
1SAVING A/CCOMISSION AMOUNTFD A/CCOMISSION AMOUNTCOMISSION AMOUNT
21001000
32540025400400
43503500
55040050900900
66506500
77007000
8754007515001500
Sheet118
Cell Formulas
RangeFormula
E2=IF(MOD(D2,25),0,CHOOSE(D2/25,400,900,1500))
F2=IF(MOD(D2,25),0,400*(D2/25)+100*CHOOSE(D2/25,0,1,3))
B2=IF(MOD(A2,25),0,400)


Formulas copied down.
 
Last edited:
Upvote 0
sorry sir it is if in single month saving A/C OR FD ACCOUNT CROSSING 25 (e.g. 28 , 32, 39.....49) means greater than 25 and less than 49 ,then its not working
 
Last edited:
Upvote 0
sorry sir it is if in single month saving A/C OR FD ACCOUNT CROSSING 25 (e.g. 28 , 32, 39.....49) means greater than 25 and less than 49 ,then its not working

I do not understand what you're saying at all.

Please explain clearly, and may be also post detailed samples with expected results.
 
Upvote 0
MONTH
SAVING A/CTOTALCARRY FORWORDCOMISSION AMOUNT
11010100
2253510400
3354520400
4507020800
56585101200
6708051200
7758051200
81520
20
0

<tbody>
</tbody>

MEANS IN
1ST MONTH NEW 10 A/C, TOTAL A/C= 10, COMMISSION =00, QUALIFY A/c=00, REMAIN FOREWORD TO NEXT MONTH=10 A/C
2ND MONTH NEW 25 A/C , TOTAL A/C= 35, COMMISSION =400, QUALIFY A/c=25, REMAIN FOREWORD TO NEXT MONTH=10 A/C
3RD MONTH NEW 35 A/C , TOTAL A/C=45 (LAST MONTH REMAIN 10+), COMMISSION =400, QUALIFY A/c=25, REMAIN FOREWORD TO NEXT MONTH=20 A/C
4TH MONTH NEW 50 A/C , TOTAL A/C=70 (LAST MONTH REMAIN 20+), COMMISSION =800, QUALIFY A/c=50, REMAIN FOREWORD TO NEXT MONTH=20 A/C
5TH MONTH NEW 65 A/C , TOTAL A/C=85 (LAST MONTH REMAIN 20+), COMMISSION =1200, QUALIFY A/c=75, REMAIN FOREWORD TO NEXT MONTH=10 A/C
6TH MONTH NEW 70 A/C , TOTAL A/C=80 (LAST MONTH REMAIN 10+), COMMISSION =1200, QUALIFY A/c=75, REMAIN FOREWORD TO NEXT MONTH=05 A/C
7TH MONTH NEW 75 A/C , TOTAL A/C=80 (LAST MONTH REMAIN 5+), COMMISSION =1200, QUALIFY A/c=75, REMAIN FOREWORD TO NEXT MONTH=05 A/C
8TH MONTH NEW 15 A/C , TOTAL A/C=20 (LAST MONTH REMAIN 5+), COMMISSION =00, QUALIFY A/c=00, REMAIN FOREWORD TO NEXT MONTH=20 A/C

SAME FOR F/D ACCOUNT BUT COMMISSION SLAB IS DIFF
 
Last edited:
Upvote 0
Thank you for providing Clear details, it's quite a bit different than what I understand from you OP.

I believe this will work for this part of your query.

I'm providing formulas for "TOTAL", "CARRY FORWARD", and "COMMISSION AMOUNT", if you Only need "COMMISSION AMOUNT", then disregard Column C and D formulas, and use Only Column E formula.

All formulas copied down.


Book1
ABCDE
1MONTHSAVING A/CTOTALCARRY FORWORDCOMISSION AMOUNT
211010100
32253510400
43354520400
54507020800
656585101200
76708051200
87758051200
981520200
Sheet118
Cell Formulas
RangeFormula
C2=SUM(D1,B2)
D2=C2-INT(C2/25)*25
E2=INT(C2/25)*400
 
Last edited:
Upvote 0
THANKS ALL DONE WITH SAVING A/C

BUT WITH FD A/C BONUS GIVEN BELOW

MONTHFD A/CTOTALCARRY FORWORDCOMISSION AMOUNTBONUS AMOUNT
125250.00400.0010000.00
22502500.004000.0020000.00
3125012500.0020000.0040000.00
4500050000.0080000.0080000.00
520000200000.00320000.00160000.00
680000800000.001280000.00320000.00
732000320000.005120000.00640000.00
896000960000.0015360000.001280000.00
92880002880000.0046080000.002560000.00
105760005760000.0092160000.007680000.00

<colgroup><col><col><col><col><col><col></colgroup><tbody>
</tbody>

BONUS FOR EVERY SALESMEN SINGLE TIME IN ALL JOB TIME

FD A/C NOS SLABNO OF FD A/C FROMNO OF FD A/C TOSLAB BONUS AMOUNT
10240.00
22524910000.00
3250124920000.00
41250499940000.00
550001999980000.00
62000079999160000.00
78000031999320000.00
83200095999640000.00
9960002879991280000.00
102880005759992560000.00
11576000AND ABOVE7680000.00

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>

HOW TO DO?
 
Upvote 0
Please re-check your figures:

Table 1:
Line 7, 8, 9, 10, "Commission Amount" do Not seem to be correct.

Table 2:
Line 7, 8, Columns "From" and "To", went Backwards?
 
Last edited:
Upvote 0
yes my mistake,

FD A/C NOS SLABNO OF FD A/C FROMNO OF FD A/C TOSLAB BONUS AMOUNT
10240.00
22524910000.00
3250124920000.00
41250499940000.00
550001999980000.00
62000079999160000.00
780000319999320000.00
8320000959999640000.00
996000028799991280000.00
10288000057599992560000.00
115760000AND ABOVE7680000.00

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top