New to this forum, Need help :)

walkonrain

New Member
Joined
May 29, 2013
Messages
8
Hi All,
Need a help on excel, found this ocean of knowledge site while surfing and enrolled quickly :)

Here is my issue :
TypeRankSMIDUnit DtMIDMNameLoan IDRD-MonthFD-MonthDateAmtComm RDComm FD
Renewal11A23/6R2010ABLR00112-1000
New9B24/6R2011CDLR002155000

<tbody>
</tbody>

Table explanation:
Type : Either Renewal or New
Rank : position
SMID: Senior Member ID
Unitdate: Date
MID: Member ID
MName: Member Name
Loan ID: Loan ID
RD-Month: Here is the no# of month RD taken
FD-Month: Its the no of month FD taken
Date
AMount: total amount taken in the perticular month
Comm RD: Commission for RD
Comm FD: Commission for FD

What i am looking for : i am trying to calculate the commission ( last 2 columns)
Condition is : for example " If for a person the Rank is 11, and the tenure for the loan is 12 month ( RD-Month column), and i also have the commission table which is given below, i need to calculate the Commission for RD ( second last column) which i am unable to figure out.

In the same way i need to calculate the commission for FD ( the last coulmn) given the same condition above.

Below table is the rank ( horizontal ) and month in vertical (extreme left)
Rest are the commission for each rank month wise.

Rank123456789101112131415
122.03.04.05.06.07.08.019.010.01.012.013.014.015.016.0
152.53.54.55.5.6.57.58.59.510.511.512.513.514.515.516.5

<tbody>
</tbody>


Similarly for FD commission calculation here is the table below:

Rank123456789101112131415
122.83.94.96.08.09.010.011.012.013.014.015.016.017.0
152.53.54.55.5.6.57.58.59.510.511.512.513.514.515.516.5

<tbody>
</tbody>

I am unable to paste the exact Excel format, my first part is on one sheet and rest 2 tables in on ther sheet

I tried my level best to explain what help i need, If any further quaries, please let me know

Thanks,
Walkonrain
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
hello, welcome to the forum, is there away that you could upload a copy of this to the forum here where we can have a better look at the sheet. you can change any sensitive information. use google docs or dropbox or something like that and past the link here
 
Upvote 0
Hi and Welcome to the forum.

You can use the INDEX, MATCH functions to return the value you want.

The MATCH function will return the ROW and COLUMN reference for the value we want returned.

Consider Sheet1:

Excel 2007
BCDEFGHIJKLMNO
1RankSMIDUnit DtMIDMNameLoan IDRD-MonthFD-MonthDateAmtComm RDComm FDRowColumn
211A23-JunR2010ABLR00112-100013.5313
Sheet1
Cell Formulas
RangeFormula
L2=INDEX(RD!$A$1:$P$3,N2,O2)
N2=MATCH(B2,RD!$A$1:$A$3,0)
O2=MATCH(H2,RD!$A$1:$P$1,0)


Here is the Lookup Sheet, named RD.

Excel 2007
ABCDEFGHIJKLMNOP
1Rank123456789101112131415
292345678191011213141516
3112.53.54.55.56.57.58.59.510.511.512.513.514.515.516.5
RD


I used columns N and O to help explain how the MATCH function works.
We can incorporate the formula in these cells into the formula in L2.


Excel 2007
ABCDEFGHIJKLM
1TypeRankSMIDUnit DtMIDMNameLoan IDRD-MonthFD-MonthDateAmtComm RDComm FD
2Renewal11A23-JunR2010ABLR00112-100013.5
Sheet1
Cell Formulas
RangeFormula
L2=INDEX(RD!$A$1:$P$3,MATCH(B2,RD!$A$1:$A$3,0),MATCH(H2,RD!$A$1:$P$1,0))


Hope this helps,
Bertie
 
Upvote 0
Hi and Welcome to the forum.

You can use the INDEX, MATCH functions to return the value you want.

The MATCH function will return the ROW and COLUMN reference for the value we want returned.

Consider Sheet1:
Excel 2007
BCDEFGHIJKLMNO
1RankSMIDUnit DtMIDMNameLoan IDRD-MonthFD-MonthDateAmtComm RDComm FDRowColumn
211A23-JunR2010ABLR00112-100013.5313

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

Worksheet Formulas
CellFormula
L2=INDEX(RD!$A$1:$P$3,N2,O2)
N2=MATCH(B2,RD!$A$1:$A$3,0)
O2=MATCH(H2,RD!$A$1:$P$1,0)

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

<tbody>
</tbody>



Here is the Lookup Sheet, named RD.
Excel 2007
ABCDEFGHIJKLMNOP
1Rank123456789101112131415
292345678191011213141516
3112.53.54.55.56.57.58.59.510.511.512.513.514.515.516.5

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



I used columns N and O to help explain how the MATCH function works.
We can incorporate the formula in these cells into the formula in L2.

Excel 2007
ABCDEFGHIJKLM
1TypeRankSMIDUnit DtMIDMNameLoan IDRD-MonthFD-MonthDateAmtComm RDComm FD
2Renewal11A23-JunR2010ABLR00112-100013.5

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

Worksheet Formulas
CellFormula
L2=INDEX(RD!$A$1:$P$3,MATCH(B2,RD!$A$1:$A$3,0),MATCH(H2,RD!$A$1:$P$1,0))

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

<tbody>
</tbody>



Hope this helps,
Bertie


Hi Berti,
Thank for your tremendous help, thank you very much.
I tried on my sheet and shome how i am unable to get the result. Is there anyway i can upload the excelsheet here !.. if possible let me know the way.
secondly, as per the formula as you said ( indexing) its giving me the result 0... moreover my critaria is if the "RanK" changes commission automatically changes. My moto is the user will fill the rank on the first sheet and rest data including the amount and commission automatically calculated and shown in commission column mentioned in the first thread.

Eagerly waiting for your reply as fire is on my back :) :) :)

Thanks,
Walkonrain
 
Upvote 0
You will probably have to play about with the ranges/sheet names in the example I posted.

There is no facility to upload files to the MrExcel forum.
As Jamtay mentioned in post #3, you can use GoolgleDocs or Dropbox to store the file and paste the link back here.
Just post a sample of you workbook layout.
NB - remove any sensitive data.
 
Upvote 0
Here is the amended formula:


Excel 2007
ABCDEFGJKLMNO
1June 13Commission
2TypeRankSenior M.IDUnit DateMember IDM. NameLoan ID NoRDFDDateAmountRDFD
3Renewal12Ramendra Mondal23/6/2013R2010A BiswasLR00112121001314
Ranjan
Cell Formulas
RangeFormula
N3=INDEX(RD!$A$1:$P$9,MATCH(B3,RD!$A$1:$A$9,0),MATCH(J3,RD!$A$1:$P$1,0))
O3=INDEX(FD!$A$1:$P159,MATCH(B3,FD!$A$1:$A$15,0),MATCH(K3,FD!$A$1:$P$1,0))


N3 formula
The range you are looking up on the RD sheet is RD!$A$1:$P$9
To get the row the lookup value is on, the range you are looking over is: MATCH(B3,RD!$A$1:$A$9,0)
If you add more data you will need to edit these ranges.

O3 formula
Lookup range FD!$A$1:$P159
Row lookup range MATCH(B3,FD!$A$1:$A$15,0
If you add more data, edit these ranges

If the rank on sheet Ranjan is not present on the lookup sheets, the formula will return a #N/A error.
i.e., change the value in cell B3 to 11, then 12.

Bertie
 
Upvote 0

Forum statistics

Threads
1,214,668
Messages
6,120,825
Members
448,990
Latest member
rohitsomani

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