Thank you so much for your time. Can't tell you how much I appreciate it. The
#REF errors are gone but now the formula is returning zero no matter what year I enter as a DOB. I have tried at least a dozen different DOB's from 1938 to 1988.
Please copy and paste the formula from your spreadsheet to here
The formula I sent before is working for me fine, but I manually added the references
So for instance where i have 'Personal Information'!E12, you may want to delete that out, and grab the cell it's pointing to with your mouse, to make sure the syntax is correct
and same for rrif!
you see in the formula you had before it shows a ' around personal information because of the space in the title, and for rrif there is no ', so update it to match that syntax into the new formula i sent and it should work
=IF('personal information'!E12="",0,OFFSET(
rrif!$G$16,YEAR(NOW())-
rrif!$B$16,0)
sorry about that, I wasn't paying great attention to the syntax on the ranges i sent
like this in the new formula
=IFERROR(IF('personal information'!E12="",0,VLOOKUP(YEAR(TODAY())-YEAR('personal information'!E12),rrif!$C$16:$G$56,5,0)),0)
Just make sure to check it with the ranges in your sheet to make sure the reference is correct
When I'm having trouble with a formula I like to highlight a part of the forumla and select F9 to calculate that cell and see what the value is'(Make sure after hitting F9 to ctrl z to return back to the references instead of the value)
Calculate the fields in the formula
Highlight these and select calculate to see if the values are what you would expect
'personal information'!E12 ->For Instance pressing F9 when highlighting this should return the value displaying in cell E12
YEAR(TODAY()) -> Year today should return 2019 cause that is the current year
YEAR('personal information'!E12) -> Should return the date of birth year(year of birth)
YEAR(TODAY())-YEAR('personal information'!E12) -> This should return the current age of the retiree
VLOOKUP(YEAR(TODAY())-YEAR('personal information'!E12),rrif!$C$16:$G$56,5,0) ->This should return the monthly withdrawal
Does that make sense? I cannot test because I would have to set up all the pages and ranges exactly the same so you want to just test those things with your data
alternatively you can go to the formula tab and click evaluate formula (you have less control of what you can see here)