Multiplying across then total down

G

Guest

I need a formula to multiply f1:f4*a1:a4 then to total that number at the
end of the column in f5. Since there is also text in this column I just want
it to reconize the numbers.

Example of table below:

This is what my sad attempt looks like in cell f5:

=sum(f1*a1+f2*a2+f3*a3+f4*a4)

Which does work until I get to the text.

A B C D E F
10% 15.58 38.50 26.68 9.43 N/A
10% 13.51 36.03 24.85 6.41 3.34
 
G

Guest

I believe you want

=SUMPRODUCT((A1:A4),(F1:F4))

sweetsue516 said:
I need a formula to multiply f1:f4*a1:a4 then to total that number at the
end of the column in f5. Since there is also text in this column I just want
it to reconize the numbers.

Example of table below:

This is what my sad attempt looks like in cell f5:

=sum(f1*a1+f2*a2+f3*a3+f4*a4)

Which does work until I get to the text.

A B C D E F
 
D

Dave O

Using your sample data I got the result 0.702 using this formula in F5:
=SUMPRODUCT(F1:F4,A1:A4)

Will that do it for you?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top