Is this a good solution to Excel's table header weaknesses?

JenniferMurphy

Well-known Member
Joined
Jul 23, 2011
Messages
2,646
Office Version
  1. 365
Platform
  1. Windows
I am helping a friend plan for retirement. She wanted to get some idea of how much she could withdraw from her retirement savings to help the grandkids without putting her own needs at risk. I started to put together a table using the FV (future value) function, but ran into a problem. I set up her current retirement account balance as one constant and the annual interest rate as another. The table would then have rows of withdrawal amounts and columns of years. The Year 1 appreciation field is to show what amount would keep the retirement balance constant.

I got it to work, but only at the expense of a complex and error-prone formula to extract the number of years from the headers.

Cell Formulas
RangeFormula
C5C5=InitBal1*AnnualRate1
D8:D13D8=LET(n,RIGHT(TableFV1[[#Headers],[Year 1]],LEN(TableFV1[[#Headers],[Year 1]])-5),FV(AnnualRate1,n,[@[Annual Withdrawal]],-InitBal1,0))
E8:E13E8=LET(n,RIGHT(TableFV1[[#Headers],[Year 3]],LEN(TableFV1[[#Headers],[Year 3]])-5),FV(AnnualRate1,n,[@[Annual Withdrawal]],-InitBal1,0))
F8:F13F8=LET(n,RIGHT(TableFV1[[#Headers],[Year 7]],LEN(TableFV1[[#Headers],[Year 7]])-5),FV(AnnualRate1,n,[@[Annual Withdrawal]],-InitBal1,0))
G8:G13G8=LET(n,RIGHT(TableFV1[[#Headers],[Year 10]],LEN(TableFV1[[#Headers],[Year 10]])-5),FV(AnnualRate1,n,[@[Annual Withdrawal]],-InitBal1,0))
H8:H13H8=LET(n,RIGHT(TableFV1[[#Headers],[Year 15]],LEN(TableFV1[[#Headers],[Year 10]])-5),FV(AnnualRate1,n,[@[Annual Withdrawal]],-InitBal1,0))
I8:I13I8=LET(n,RIGHT(TableFV1[[#Headers],[Year 20]],LEN(TableFV1[[#Headers],[Year 10]])-5),FV(AnnualRate1,n,[@[Annual Withdrawal]],-InitBal1,0))
J8:J13J8=[@[Year 1]]/InitBal1-1
C9C9=Year1Appr1/2
C10C10=Year1Appr1
Named Ranges
NameRefers ToCells
'Future Value'!AnnualRate1='Future Value'!$C$4C5, D8:I13
'Future Value'!InitBal1='Future Value'!$C$3C5, D8:J13
'Future Value'!Year1Appr1='Future Value'!$C$5C9:C10


I tried a number of other solutions, most of which either didn't work or were worse than the problem. I finally came up with this. It uses a helper row, which raises the problem of explaining the need for that row. I could hide it or change the character color to white. But it works and the formulas inside the table are much more readable and less error prone.

Cell Formulas
RangeFormula
C5C5=InitBal1*AnnualRate1
D6:I6D6=LET(txt,OFFSET(D6,1,0),RIGHT(txt,LEN(txt)-5))
D8:I13D8=FV(AnnualRate1,D$6,[@[Annual Withdrawal]],-InitBal1,0)
J8:J13J8=[@[Year 1]]/InitBal1-1
C9C9=Year1Appr1/2
C10C10=Year1Appr1
Named Ranges
NameRefers ToCells
'Future Value'!AnnualRate1='Future Value'!$C$4C5, D8:I13
'Future Value'!InitBal1='Future Value'!$C$3C5, D8:J13
'Future Value'!Year1Appr1='Future Value'!$C$5C9:C10


Is there a better way?
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Excel Formula:
=TEXTAFTER(TableFV1[[#Headers],[Year 1]],"Year ")

That's great. When I first tried it, it didn't automatically update when I copied it across the header row. I had to manually go in and update the header text in the expression. I thought this would be better:
VBA Code:
=TEXTAFTER(OFFSET(D6,1,0),"Year ")

But with your code, I can move that row up above the table so I don't have to hide it when printing the table.

Thanks
 
Upvote 0
Hello Jennifer,
You can use @Cubist recommendation to replace your entire "n" variable in your "Year #" columns. See NEW v1 formula to see how I used to with your original formula... and then you can mark Cubist's post as the Solution.

=TEXTAFTER(TableFV1[[#Headers],[Year 1]],"Year ")

OLD:
Excel Formula:
=LET(
n,RIGHT(TableFV1[[#Headers],[Year 1]],LEN(TableFV1[[#Headers],[Year 1]])-5),
FV(AnnualRate1,n,[@[Annual Withdrawal]],-InitBal1,0))

NEW v1:
Excel Formula:
=LET(
n, TEXTAFTER(TableFV1[[#Headers],[Year 1]],"Year "),
FV(AnnualRate1,n,[@[Annual Withdrawal]],-InitBal1,0))

That's great. When I first tried it, it didn't automatically update when I copied it across the header row. I had to manually go in and update the header text in the expression.

Because you want to lock your Annual Withdrawal column, you need to update the Table Reference so you can now drag the formula from D8 to I8 and then down to the last row.

To lock the column reference, change [@[Annual Withdrawal]] to [@[Annual Withdrawal]:[Annual Withdrawal]]. See NEW v2 formula below…

I deal with mostly Tables myself, so this was something that plagued me… and only recently learned how to lock them in.

Reference: Excel Table absolute reference for cells, columns, and rows

NEW v2:
Excel Formula:
=LET(
n, TEXTAFTER(TableFV1[[#Headers],[Year 1]],"Year "),
FV(AnnualRate1,n,TableFV1[@[Annual Withdrawal]:[Annual Withdrawal]],-InitBal1,0))

I assume this is still a "work in progress" as you have formulas in C9-C10, but static values in C8, C11-C13.
I'd recommend using the Accounting Number Format for your Table so the dollar signs are lined up on the left making the numbers more easily readable.

Best regards…

VBA Testing.xlsm
CDEFGHIJ
3$ 100,000Initial balance
44.00%Annual appreciation rate
5$ 4,000Year 1 appreciation
6
7Annual WithdrawalYear 1Year 3Year 7Year 10Year 15Year 20APR
8$ -$ 104,000$ 112,486$ 131,593$ 148,024$ 180,094$ 219,1124%
9$ 2,000$ 102,000$ 106,243$ 115,797$ 124,012$ 140,047$ 159,5562%
10$ 4,000$ 100,000$ 100,000$ 100,000$ 100,000$ 100,000$ 100,0000%
11$ 5,000$ 99,000$ 96,878$ 92,102$ 87,994$ 79,976$ 70,222-1%
12$ 6,000$ 98,000$ 93,757$ 84,203$ 75,988$ 59,953$ 40,444-2%
13$ 7,000$ 97,000$ 90,635$ 76,305$ 63,982$ 39,929$ 10,666-3%
14
15
16Year 1Year 3Year 7
17137
Future Value
Cell Formulas
RangeFormula
C5C5=InitBal1*AnnualRate1
D8:D13D8=LET( n, TEXTAFTER(TableFV1[[#Headers],[Year 1]],"Year "), FV(AnnualRate1,n,TableFV1[@[Annual Withdrawal]:[Annual Withdrawal]],-InitBal1,0))
E8:E13E8=LET( n, TEXTAFTER(TableFV1[[#Headers],[Year 3]],"Year "), FV(AnnualRate1,n,TableFV1[@[Annual Withdrawal]:[Annual Withdrawal]],-InitBal1,0))
F8:F13F8=LET( n, TEXTAFTER(TableFV1[[#Headers],[Year 7]],"Year "), FV(AnnualRate1,n,TableFV1[@[Annual Withdrawal]:[Annual Withdrawal]],-InitBal1,0))
G8:G13G8=LET( n, TEXTAFTER(TableFV1[[#Headers],[Year 10]],"Year "), FV(AnnualRate1,n,TableFV1[@[Annual Withdrawal]:[Annual Withdrawal]],-InitBal1,0))
H8:H13H8=LET( n, TEXTAFTER(TableFV1[[#Headers],[Year 15]],"Year "), FV(AnnualRate1,n,TableFV1[@[Annual Withdrawal]:[Annual Withdrawal]],-InitBal1,0))
I8:I13I8=LET( n, TEXTAFTER(TableFV1[[#Headers],[Year 20]],"Year "), FV(AnnualRate1,n,TableFV1[@[Annual Withdrawal]:[Annual Withdrawal]],-InitBal1,0))
J8:J13J8=[@[Year 1]]/InitBal1-1
D17D17=TEXTAFTER(TableFV1_2[[#Headers],[Year 1]],"Year ")
E17E17=TEXTAFTER(TableFV1_2[[#Headers],[Year 3]],"Year ")
F17F17=TEXTAFTER(TableFV1_2[[#Headers],[Year 7]],"Year ")
Named Ranges
NameRefers ToCells
AnnualRate1='Future Value'!$C$4C5, D8:I13
InitBal1='Future Value'!$C$3C5, D8:J13
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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