VBA help for adding rows on a loop until a specified value is reached

jakeecirg

New Member
Joined
Mar 24, 2025
Messages
25
Office Version
  1. 365
Platform
  1. Windows
So i am new to VBA code and would very much appreciate any help that could be given:

In my column "D & F" there are the names of two separate people. The rows underneath contain the age that they are in each year. (Ascending per year). For example in Cell D14 person 1 is 63 & in D15 (symbolizing a year has passed) person 1 is now 64. I am trying to use some VBA code that will loop through my column ranges "D & F" and continue to add rows at the bottom of the columns until both people turn age 90. This is the formula of how I determine the persons age is here: [=INT((B14-INPUTS!$D$9)/365.25)].

I believe this uses some Until / Loop code but I am running into a dead end.
I would be happy to provide any additional information that could help!
 

Attachments

  • Excel help SS.png
    Excel help SS.png
    24.5 KB · Views: 11
to be clear, you're not just wanting to add a row you also want to add data into that row which can then be checked. Is this data being added by a fill down from the row above? Is there a formula in the date column to add 1 year to the date above?
There are a number of options to do this but without the above it is hard to provide a suitable solution.
 
Upvote 0
I was thinking, if this is how the data range is structured, maybe you could try this approach,
afsdafsdf.xlsx
CDEFGHIJ
4
5
6
7Plan Year (End Date)AgeTotal IncomeAnnual TaxesIncome FloorGWRRP Income
81/1/20266362$51,000$3,192$34,080$20,112
9$60,840$4,137$34,762$30,216
10$43,697$2,384$35,457$10,624
11$44,571$2,432$36,166$10,837
12$45,462$2,480$36,889$11,053
13$46,371$2,530$37,627$11,274
14$47,299$2,581$38,380$11,500
15$48,245$2,632$39,147$11,730
16$49,210$2,685$39,930$11,964
17$50,194$2,739$40,729$12,204
18$51,198$2,793$41,543$14,839
19$52,222$2,849$42,374$15,761
20$53,266$2,906$43,222$16,703
21$54,331$2,964$44,086$17,819
22$55,418$3,024$44,968$19,052
23$56,526$3,084$45,867$20,202
24$57,657$3,146$46,785$21,353
25$58,810$3,209$47,720$22,750
26$59,986$3,273$48,675$24,171
27$61,186$3,338$49,648$25,906
28$62,410$3,405$50,641$27,099
29$63,658$3,473$51,654$28,423
30$64,931$3,543$52,687$29,898
31$66,230$3,613$53,741$31,318
32$67,554$3,686$54,816$33,164
33
Sheet3

VBA Code:
Sub test()
    Dim x As Worksheet: Set x = ActiveSheet
    Dim r&, a1%, a2%, d As Date, nD As Date, nr&
    
    Do
        r = x.Cells(x.Rows.Count, "C").End(xlUp).Row
        a1 = x.Cells(r, "D").Value: a2 = x.Cells(r, "E").Value
        If a1 >= 90 And a2 >= 90 Then Exit Do
        d = x.Cells(r, "C").Value
        nD = DateSerial(Year(d) + 1, Month(d), Day(d))
        nr = r + 1
        With x
            .Cells(nr, "C").Value = nD
            .Cells(nr, "C").NumberFormat = "m/d/yyyy"
            .Cells(nr, "D").Formula = "=D" & r & "+1"
            .Cells(nr, "E").Formula = "=E" & r & "+1"
        End With
    Loop
    
End Sub
 
Upvote 0
Solution
Correct, I would like a new row to be formed and the data to be filled in. Thank you Mr. Sam, it worked great! The formula I use to populate the age column is here:
=INT((D14-INPUTS!$D$9)/365.25) --> This says D14 (start year) minus 'INPUTS'D9 (person's birthday)/ 365.25 equals age.

I did notice that the columns to the right of my Age column (Total Income, Annual Taxes, Income Floor, GWRRP, and the numbers to the right) also would need a "fill down feature" for their formulas if new rows were populated. Is this possible? Would I need to provide the formulas for them? The formulas would be equal to their previous cells formula.



Below is my entire spreadsheet. The yellow boxes at the top represent how many green boxes there should be below. The green boxes all have a formula & the white boxes with numbers above the green boxes all have a formula. (which is a FV growth rate at the % to the side of each box.) Would this be at all possible to have a macro that can:

1. Solve for the age of each person to the age of 90 by adding rows via VBA loop
2. Have a separate VBA code that looks at the value in the yellow boxes and changes how many green boxes are below (with the formula inside?)

I know this is very much out of my realm & you have been a lifesaver already so far!
 

Attachments

  • Send to Sam.png
    Send to Sam.png
    128.7 KB · Views: 5
Upvote 0
Please share all the details you have, including formulas and anything else relevant. Also I'd also appreciate an image showing column names and row numbers, will give it a try!
 
Upvote 0
I have 3 sheets named 1. INPUTS 2. CHART 3.MATH The INPUT sheet allows me to enter the persons birthday, name, etc. The CHART sheet is below (picture attached).

Values all start at row 13: i have hidden some rows & columns to help this chart look cleaner.
On the very left column B we have 'Plan Year'. FORMULA --> Cell Value from INPUT
Column D we have Person 1 age. FORMULA --> INT((B#-INPUTS!$D$9)/365.25) (basically todays date - DOB)
Column F we have Person 2 age. FORMULA --> INT((B#-INPUTS!$D$10)/365.25)
Column G 'Total Income' FORMULA --> MATH!AH# ...(referencing another cell, # changes by row #)
Column H 'Annual Taxes' FORMULA --> MATH!AL# ...(referencing another cell, # changes by row #)
Column I 'Income Floor' FORMULA --> MATH!AC# ...(referencing another cell, # changes by row #)
Column K 'GWRRP Income' FORMULA -->=(G# + H#)-I#
Column M 'Segment 1' light green box FORMULA --> =-fv(n#/12,12,-k#/12,M#,0) *bold value represents Column J 'GWRRP Income'
Column N ' Growth rate' FORMULA --> ex. 2% (cell value)
Column O 'Segment 2' (row 13-28 currently) white box FORMULA --> -fv(p#/12,12,0,O#,0) *represents that no withdrawal in white boxes light green box FORMULA --> =-fv(n#/12,12,-k#/12,O#,0)
Column P ' Growth rate' FORMULA --> ex. 2% (cell value)
Column Q 'Segment 3' (row 13-44 currently) white box FORMULA --> -fv(p#/12,12,0,Q#,0) *represents that no withdrawal in white boxes light green box FORMULA --> =-fv(n#/12,12,-k#/12,Q#,0)
Column '.....' *** the pattern continues until 'Legacy Column' which has no green withdrawal box (only FV growth formula). The white boxes grow per segment.

The green box in Segment 1 will be for the persons first 'X' years (specified by yellow box value at top) , segment 2 white values will continue until Segment 1 green box is over. Then Segment 2 green box will begin and continue for as long as the segment 2 yellow box 'X' value states. This pattern continues all the way through Segment 3-5 + Legacy (no green boxes).

Long story short could we?
1. Solve for the age of each person to the age of 90 by adding rows via VBA loop, while the formulas in the columns to the right autofill
2. Have a separate VBA code that looks at the value in the yellow boxes and changes how many green boxes are below (with the formula inside?)

If you can pull this off Ben you would be a wizard!!! Thank you for even taking the time to look at this.
 

Attachments

  • Send to Sam 2.png
    Send to Sam 2.png
    143.3 KB · Views: 7
Upvote 0
Could you please share a copy of your demo working file that includes the "Chart," "Input," and "Math" sheets? Please ensure that all formulas are included. Thank you!
 
Upvote 0
Bucket Solver - Copy.xlsm
CDEFGHIJKLPQ
3Accounts:Notes:
4Owner:Type:Amount:
5-Trad. IRA$ 316,000.00Reinvest RMD's End both lives @ 90. Pension Period Certain Segment length change
6-$ -
7Client Information:-$ -
8Name:D.O.BRetirement Date:Age-$ -
9-11/16/19621/1/202662-$ -
10-11/24/19636/1/202761-$ -
11-$ -
12- D.O.B.Year of passing:-$ -
13November1619622053Total Asset Balance:$ 316,000.00
14Retirement Date:Life Expectancy:
15January 1202690Planned Single Expenses:
16Year:Year:Amount:Name:
17- D.O.B.Year of passing:20262027$ 9,000.00 Healthcare
18November241963205420252027$ 18,000.00 Healthcare
19 Retirement Date:Life Expectancy:--
20June1202790--
21
22Plan Length:29yrsRequired Monthly Income $ 3,500.00<--Net
23Survivor Req. Income$ 3,500.00<--Net
24StartStartEnd End Grossst/endNetAnnual100% Certain50% Certain
25Owner:Income Source:MonthYearMonthYearAmountTaxAmountInflation
26Stan ThompsonSocial SecurityApril2026December2054$ 2,1404.0%$ 1,8402.0%
27Cindy ThompsonSocial Security--$ -0.0%$ -0.0%
28Cindy ThompsonPensionJune2026December2054$ 7004.0%$ 6022.0%
29-Pension--$ -0.0%$ -0.0%
30-Annuity--$ -0.0%$ -0.0%
31-Part Time Income--$ -0.0%$ -0.0%
32-Other--$ -0.0%$ -0.0%
33-Other--$ -0.0%$ -0.0%
34-Other--$ -0.0%$ -0.0%
35Total Guar. Income$ 2,840.00$ 2,442.40
36Inflation:2.0%Ordinary tax rate:10.0%Required Income Gap$ 1,057.60<--Net
INPUTS
Cell Formulas
RangeFormula
D9D9=DATEVALUE(C13&" "&D13&", "&E13)
E9E9=DATEVALUE(C15&" "&D15&", "&E15)
F9:F10F9=YEARFRAC(D9,TODAY(),)
D10D10=DATEVALUE(C18&" "&D18&", "&E18)
E10E10=DATEVALUE(C20&" "&D20&", "&E20)
C12C12=C9 & " D.O.B."
F13F13=(F15-F9)+YEAR(TODAY())
J13J13=SUM(J5:J12)
C17C17=C10 & " D.O.B."
F18F18=(F20-F10)+YEAR(TODAY())
G22G22=IF(F20-F10>F15-F9,F20-F10,F15-F9)
I35,K35I35=SUM(I26,I27,I28,I29,I30)
K26:K34K26=I26*(100%-(J26+$H$36))
K36K36=IF(K35>=K22,0,K22-K35)
 
Upvote 0
Bucket Solver - Copy.xlsm
BCDEFGHIJLM
7(Net) Rate of Return
8ROR During Distribution
9Proposed Investment Amount
10Allocation Percentage
11Annual (net)
12Plan Year (End Date)Plan Year (End Date)AgeTotal Income Annual TaxesIncome Floor GWRRP Income GWRRP Income
131/1/2026202663636262$51,000$3,192$34,080$20,112$20,112
161/1/2027202764646363$42,840$2,337$34,762$10,416$10,416
191/1/2028202865656464$43,697$2,384$35,457$10,624$10,624
221/1/2029202966666565$44,571$2,432$36,166$10,837$10,837
281/1/2030203067676666$45,462$2,480$36,889$11,053$11,053
291/1/2031203168686767$46,371$2,530$37,627$11,274$11,274
321/1/2032203269696868$47,299$2,581$38,380$11,500$11,500
351/1/2033203370706969$48,245$2,632$39,147$11,730$11,730
381/1/2034203471717070$49,210$2,685$39,930$11,964$11,964
441/1/2035203572727171$50,194$2,739$40,729$12,204$12,204
451/1/2036203673737272$51,198$2,793$41,543$12,448$16,388
481/1/2037203774747373$52,222$2,849$42,374$12,697$17,395
511/1/2038203875757474$53,266$2,906$43,222$12,951$18,223
541/1/2039203976767575$54,331$2,964$44,086$13,210$19,201
601/1/2040204077777676$55,418$3,024$44,968$13,474$20,264
611/1/2041204178787777$56,526$3,084$45,867$13,743$22,188
641/1/2042204279797878$57,657$3,146$46,785$14,018$23,006
671/1/2043204380807979$58,810$3,209$47,720$14,299$24,032
701/1/2044204481818080$59,986$3,273$48,675$14,585$25,029
761/1/2045204582828181$61,186$3,338$49,648$14,876$26,281
771/1/2046204683838282$62,410$3,405$50,641$15,174$29,686
801/1/2047204784848383$63,658$3,473$51,654$15,477$30,152
831/1/2048204885858484$64,931$3,543$52,687$15,787$30,724
861/1/2049204986868585$66,230$3,613$53,741$16,103$31,188
921/1/2050205087878686$67,554$3,686$54,816$16,425$32,018
931/1/205120518887
941/1/205220528988
CHART
Cell Formulas
RangeFormula
B13B13=IF(INPUTS!E9>INPUTS!E10,INPUTS!E10,INPUTS!E9)
D13,D92,D86,D83,D80,D76:D77,D70,D67,D64,D60:D61,D54,D51,D48,D44:D45,D38,D35,D32,D28:D29,D22,D19,D16D13=INT((B13-INPUTS!$D$9)/365.25)
E13,E92,E86,E83,E80,E76:E77,E70,E67,E64,E60:E61,E54,E51,E48,E44:E45,E38,E35,E32,E28:E29,E22,E19,E16E13=IF(D13>INPUTS!$F$15,0,CHART!D13)
F13,F92,F86,F83,F80,F76:F77,F70,F67,F64,F60:F61,F54,F51,F48,F44:F45,F38,F35,F32,F28:F29,F22,F19,F16F13=INT((B13-INPUTS!$D$10)/365.25)
G13,G92,G86,G83,G80,G76:G77,G70,G67,G64,G60:G61,G54,G51,G48,G44:G45,G38,G35,G32,G28:G29,G22,G19,G16G13=IF(F13>INPUTS!$F$20,0,CHART!F13)
H13H13=MATH!AH9
I13I13=MATH!AL9
J13J13=MATH!AC9
L13,L92,L86,L83,L80,L76:L77,L70,L67,L64,L60:L61,L54,L51,L48,L44:L45,L38,L35,L32,L28:L29,L22,L19,L16L13=IF(K13<0,0,K13)
M13,M86,M83,M80,M77,M70,M67,M64,M61,M54,M51,M48,M45,M38,M35,M32,M29,M22,M19,M16M13=IF(L13=0,AU13,L13+AU13)
B16,B86,B83,B80,B70,B67,B64,B54,B51,B48,B38,B35,B32,B22,B19B16=EDATE(B13,12)
H16H16=MATH!AH10
I16I16=MATH!AL10
J16J16=MATH!AC10
H19H19=MATH!AH11
I19I19=MATH!AL11
J19J19=MATH!AC11
H22H22=MATH!AH12
I22I22=MATH!AL12
J22J22=MATH!AC12
H28:J28,H92:J92,H76:J76,H60:J60,H44:J44H28=H25
M28,M92,M76,M60M28=IF(L28=0,AU25,L28+AU25)
H29H29=MATH!AH14
I29I29=MATH!AL14
J29J29=MATH!AC14
B28,B92,B76,B60,B44B28=EDATE(B22,12)
B29,B77,B61,B45B29=EDATE(B28,12)
H32H32=MATH!AH15
I32I32=MATH!AL15
J32J32=MATH!AC15
H35H35=MATH!AH16
I35I35=MATH!AL16
J35J35=MATH!AC16
H38H38=MATH!AH17
I38I38=MATH!AL17
J38J38=MATH!AC17
M44M44=IF(L41=0,AU41,L41+AU41)
H45H45=MATH!AH19
I45I45=MATH!AL19
J45J45=MATH!AC19
H48H48=MATH!AH20
I48I48=MATH!AL20
J48J48=MATH!AC20
H51H51=MATH!AH21
I51I51=MATH!AL21
J51J51=MATH!AC21
H54H54=MATH!AH22
I54I54=MATH!AL22
J54J54=MATH!AC22
H61H61=MATH!AH24
I61I61=MATH!AL24
J61J61=MATH!AC24
H64H64=MATH!AH25
I64I64=MATH!AL25
J64J64=MATH!AC25
H67H67=MATH!AH26
I67I67=MATH!AL26
J67J67=MATH!AC26
H70H70=MATH!AH27
I70I70=MATH!AL27
J70J70=MATH!AC27
H77H77=MATH!AH29
I77I77=MATH!AL29
J77J77=MATH!AC29
H80H80=MATH!AH30
I80I80=MATH!AL30
J80J80=MATH!AC30
H83H83=MATH!AH31
I83I83=MATH!AL31
J83J83=MATH!AC31
H86H86=MATH!AH32
I86I86=MATH!AL32
J86J86=MATH!AC32
C13,C16,C19,C22,C28:C29,C32,C35,C38,C44:C45,C48,C51,C54,C60:C61,C64,C67,C70,C76:C77,C80,C83,C86,C92:C94C13=YEAR(B13)
E93:E94,G93:G94E93=E92+1
 
Upvote 0

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