Microsoft Office Excel formulas are used to perform computations either directly or when used as a function
If cell C30 is decreased by 15%, then only 85% of its value would remain
i.e. 85% of C30
So, the formula for this is:
= 0.85 * C30
The formula for simple interest is:
I = PRT
Where R is in percentage.
In this case:
T ⇒ D4
P ⇒ D5
R ⇒ D6
So, the formula for this is:
= D5 * D4 * D6
The formula for compound interest is:
I = P(1 + R)^T - P
Where R is in percentage.
In this case:
T ⇒ D4
P ⇒ D5
R ⇒ D6
So, the formula for this is:
= D5 * (1 + D6)^D4 - D5
Read more about Excel formulas at:
https://brainly.com/question/14299634
#SPJ1