I need to add a fixed amount to an amount that grows by 4% each year.
For instance A1= 10,000 and A2 = 3,000
The total in year 1 is 13,000 but in year 2 it is A1+ (A2*1.04). In year 3, its A1 + (A2*1.04*1.04)etc.
Is there a function that would calculate this or do I just keep adding a *1.04 to each next year.