Someone tells that over the next 10 years the value of a house will lose 13%. So if the value is 10000 now, the value after 10 years will be 8700.
Now I want to generate the following table
+------+-----------------+-------+
| Year | Percentage_drop | Value |
+------+-----------------+-------+
| 1 | ? | ? |
| 2 | ? | ? |
| 3 | ? | ? |
| 4 | ? | ? |
| 5 | ? | ? |
| 6 | ? | ? |
| 7 | ? | ? |
| 8 | ? | ? |
| 9 | ? | ? |
| 10 | ? | 8700 |
+------+-----------------+-------+
How to split equally the whole 13% among the ten years? What is the math formula to generate the missing values (?) ? Is there any general math formula to calculate the missing values (?) with different number of years or percentage? Can this be done in Excel?