Excel multiply number by another number x times

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

1

2 Answers

Refer to the following screenshot and try the formula

=(A1*(A2^A3))

enter image description here

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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like