In MS Access, I have a table like below:
FY Percent
2015 4.5%
2016 5%
2017 5.5%
2018 6.5%
2019 5%
2020 5%
Now I want to add a calculated row and that row should be calculated as shown below:
FY Calculated
2015 P * 1 (Multiply the value by 1 for first year)
2016 P * 2015 Calculated value (the above value)
2017 P * 2016 Calculated Value
2018 P * 2017 Calculated Value
2019 P * 2018 Calculated Value
2020 P * 2019 Calculated Value
2021 P * 2020 Calculated Value
P is the percentage here
How can i do this by pure Access Query? I am not interested in Macros for now.
Thanks in advance