http://www.irs.gov/publications/p590/ar02.html
A situation which would seem to have a simple answer but so far I have not yet devised one for it. Namely, this involves required minimum distributions. When someone reaches a certain age, 70.5, after that they have to start taking money out of their retirement plan account. Of course, more to it than that figures into the situation, however, that serves as the needed information to understand the problem.
This money must come out of the retirement plan at a certain rate. That rate gets decided upon by the age of the person in the retirment plan, and the age of the person that he or she has designated as a beneficiary to receive his or her money if he or she dies.
So, for somebody born in 1926, that person would have reached the age of 70.5 in 1996. That person's beneficiary reached the age of 20 that same year.
Table II (continued)
20 21 22 23 24 25 26 27 28 29
60 63.3 62.3 61.4 60.4 59.5 58.5 57.6 56.6 55.7 54.7
61 63.3 62.3 61.3 60.4 59.4 58.5 57.5 56.6 55.6 54.7
62 63.2 62.3 61.3 60.4 59.4 58.4 57.5 56.5 55.6 54.7
63 63.2 62.3 61.3 60.3 59.4 58.4 57.5 56.5 55.6 54.6
Now, to calculate the rate at which the money must come out of the person's retirement plan, for 1996, 1/63.3 of the balance of the account must come out.
What I wanted to do was to set up a formula on another worksheet which return, during a particular year, what the rate would be. In 1996, when the participant has reached the age of 60 and the beneificiary has reached the age of 20, that would come to 1/63.3, while in 1997, when the participant has reached the age of 61 and the beneficiary the age of 21, that would come to 1/62.3.
I tried this out on one worksheet in a simplifed form so I could get the formulas involved ready for this post.
Doing it one one sheet, I pasted the information (after doing a text to columns in data) so that cell A1 remained a blank cell, while Cells A2:A5 had the numbers from 60 to 63 in them (age of the participant). Cells B1:K1 had the numbers 20 to 29 in them (age of the beneficiary). I decided to use the offset function to pull this off.
So, in Cell B9, I put in this formula
=OFFSET(B2,1,1,1,1)
When I dragged to autopopulate the cells underneath, this happened:
=OFFSET(B3,1,1,1,1)
=OFFSET(B4,1,1,1,1)
=OFFSET(B5,1,1,1,1)
62.3
62.3
62.3
0
When it returned the number 0, I know a problem had occured. Namely, the formulas offset the cells underneath the cell that I had first offset and so forth, instead of offsetting the location that I had last offset. So instead of offestting C3, D4, E5, F6, etc., it followed the pattern described above.
A situation which would seem to have a simple answer but so far I have not yet devised one for it. Namely, this involves required minimum distributions. When someone reaches a certain age, 70.5, after that they have to start taking money out of their retirement plan account. Of course, more to it than that figures into the situation, however, that serves as the needed information to understand the problem.
This money must come out of the retirement plan at a certain rate. That rate gets decided upon by the age of the person in the retirment plan, and the age of the person that he or she has designated as a beneficiary to receive his or her money if he or she dies.
So, for somebody born in 1926, that person would have reached the age of 70.5 in 1996. That person's beneficiary reached the age of 20 that same year.
Table II (continued)
20 21 22 23 24 25 26 27 28 29
60 63.3 62.3 61.4 60.4 59.5 58.5 57.6 56.6 55.7 54.7
61 63.3 62.3 61.3 60.4 59.4 58.5 57.5 56.6 55.6 54.7
62 63.2 62.3 61.3 60.4 59.4 58.4 57.5 56.5 55.6 54.7
63 63.2 62.3 61.3 60.3 59.4 58.4 57.5 56.5 55.6 54.6
Now, to calculate the rate at which the money must come out of the person's retirement plan, for 1996, 1/63.3 of the balance of the account must come out.
What I wanted to do was to set up a formula on another worksheet which return, during a particular year, what the rate would be. In 1996, when the participant has reached the age of 60 and the beneificiary has reached the age of 20, that would come to 1/63.3, while in 1997, when the participant has reached the age of 61 and the beneficiary the age of 21, that would come to 1/62.3.
I tried this out on one worksheet in a simplifed form so I could get the formulas involved ready for this post.
Doing it one one sheet, I pasted the information (after doing a text to columns in data) so that cell A1 remained a blank cell, while Cells A2:A5 had the numbers from 60 to 63 in them (age of the participant). Cells B1:K1 had the numbers 20 to 29 in them (age of the beneficiary). I decided to use the offset function to pull this off.
So, in Cell B9, I put in this formula
=OFFSET(B2,1,1,1,1)
When I dragged to autopopulate the cells underneath, this happened:
=OFFSET(B3,1,1,1,1)
=OFFSET(B4,1,1,1,1)
=OFFSET(B5,1,1,1,1)
62.3
62.3
62.3
0
When it returned the number 0, I know a problem had occured. Namely, the formulas offset the cells underneath the cell that I had first offset and so forth, instead of offsetting the location that I had last offset. So instead of offestting C3, D4, E5, F6, etc., it followed the pattern described above.