Recursion VBA finding percentage

vds1

Well-known Member
Joined
Oct 5, 2011
Messages
1,200
Hello Everyone,

Happy New Year

Using the below table i would like to determine % of corp and % of Ind mentioned in column E and F.
  • if the flag is Corp then Corp% is 100%
  • if the flag is Ind then Ind% is 100%

Above two cases are simple and straight forward. But when the flag is fund then the Client Account number should be looked at Fund Account, in this case 16 is searched in column B and we see two rows both contributing equally to Ind% and Corp%. Hence 50% is allocated to both Corp% and Ind%.

So the calculation is
= 150+150=300
= Corp%(14)+Ind%(13)
Therefore,
=50%+50% (By dividing 300 to both sides)

Hence fund account 27 has 50% to Ind% and 20% to Corp%

CLAccountFund AccountValueFlagCorp%Ind%
1121200.00Corp100%0%
1222100.00Corp100%0%
1316150.00Ind0%100%
1416150.00Corp100%0%
1525300.00Corp100%0%
1627450.00Fund50%50%

<tbody>
</tbody>














There can also be fund of fund, which can be even more complex, like below table, the fund account 28 is a fund of fund. So the client account 27 holds 16 which is again fund and 16 holds 13 and 14.

CL AccountFund AccountValueFlagCorp%Ind%
1121200.00Corp100%0%
1222100.00Corp100%0%
1316150.00Ind0%100%
1416150.00Corp100%0%
1525300.00Corp100%0%
1627450.00Fund50%50%
2728500Fund50%50%

<tbody>
</tbody>













Hope that makes sense. Many thanks for your help
 
Last edited:

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi, something like this perhaps.


Excel 2013/2016
ABCDEF
1CLAccountFund AccountValueFlagCorp%Ind%
21121200Corp100%0%
31222100Corp100%0%
41316150Ind0%100%
51416150Corp100%0%
61525300Corp100%0%
71627450Fund50%50%
Sheet1
Cell Formulas
RangeFormula
E2=IF(D2="Corp",1,IF(D2="Fund",COUNTIFS($B$2:$B$7,A2,$D$2:$D$7,"Corp")/COUNTIFS($B$2:$B$7,A2),0))
F2=IF(D2="Ind",1,IF(D2="Fund",1-E2,0))
 
Upvote 0

Book1
ABCDEF
1CLAccountFund AccountValueFlagCorp%Ind%
21121200Corp100%0%
31222100Corp100%0%
41316150Ind0%100%
51416150Corp100%0%
61525300Corp100%0%
71627450Fund50%50%
82728500Fund50%50%
Sheet1


Code:
Public Sub FindPercentage()

Dim lastRow As Long
Dim thisRow As Long
Dim corpValue As Double
Dim indValue As Double
Dim fundAccount As Variant

lastRow = Cells(Rows.Count, "A").End(xlUp).Row
For thisRow = 2 To lastRow
    Select Case Cells(thisRow, "D").Value
        Case "Corp"
            Cells(thisRow, "E").Value = 1
            Cells(thisRow, "F").Value = 0
        Case "Ind"
            Cells(thisRow, "E").Value = 0
            Cells(thisRow, "F").Value = 1
        Case "Fund"
            fundAccount = Cells(thisRow, "A").Value
            indValue = 0
            corpValue = 0
            
            Do Until Application.WorksheetFunction.CountIf(Range("B1:B" & thisRow - 1), fundAccount) = 0
                corpValue = corpValue + Application.WorksheetFunction.SumIfs(Range("C1:C" & thisRow - 1), Range("B1:B" & thisRow - 1), fundAccount, Range("D1:D" & thisRow - 1), "Corp")
                indValue = indValue + Application.WorksheetFunction.SumIfs(Range("C1:C" & thisRow - 1), Range("B1:B" & thisRow - 1), fundAccount, Range("D1:D" & thisRow - 1), "Ind")
                fundAccount = Range("A" & Application.WorksheetFunction.Match(fundAccount, Range("B1:B" & thisRow - 1), 0)).Value
            Loop
            
            If corpValue + indValue = 0 Then
                Cells(thisRow, "E").Value = 0
                Cells(thisRow, "F").Value = 0
            Else
                Cells(thisRow, "E").Value = corpValue / (corpValue + indValue)
                Cells(thisRow, "F").Value = indValue / (corpValue + indValue)
            End If
    End Select
Next thisRow

End Sub

WBD
 
Upvote 0
Hello FormR,

Thank you for your reply. Your formula would work if the fund holds two client account investors. If the fund holds another fund then it would fail as shown in table 2.

Its more like tree structure as shown below, fund can hold multiple investor and the fund itself. You can consider node as fund and leaf as client investor. The tree could be any structure and size.

dtIHO.gif


Hello WBD,

I just saw your answer and I will respond after looking into your code
 
Upvote 0
I will respond after looking into your code

Hi, I think I'll wait for this response before going any further, but example data and expected results that demonstrate this tree like structure would help if you still need help after checking the other suggestion.
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,916
Members
449,093
Latest member
dbomb1414

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