I would like to multiply a number by another number x times...
e.g. multiply 100 by 2, 3 times is
100 x 2 x 2 x 2 = 800
but I need to do it when 2 is another cell and the number times I multiply by 2 is also a another cell i.e. in this example 3
2 Answers
Refer to the following screenshot and try the formula
=(A1*(A2^A3)) 2 say the cells are A1, B1 and C1
A1 = 100
B1 = 2
C1 = 3
D1 = Result = (a1*(b1^c1)) *edited
Just a simple maths equation ;)
2