Home > Back-end >  Can Excel Multiply Multiple Numbers with one formula?
Can Excel Multiply Multiple Numbers with one formula?

Time:08-07

I am looking for a formula that works like sum but instead of summarysing each element I want it to multiple each lement.

For eaxample if I have the following dataset A1=1,A2=2,A3=3,A4=4 the FORMULA(A1:A4) would do the following 123*4 = 24

Is there such formula?

Thanking you in advance.

CodePudding user response:

PRODUCT(A1:A4) is the function you need.

  • Related