I want to multiply each cell of the column with a value defined in some range and get their sum.
I expect B1*A1 + B2*A1 + B3*A1 = 2000*1 + 2000*2 + 2000*3 = 12000
I tried:
=PRODUCT(B1:B3, A1)
returns A1B1B2*B3
=B1:B3*A1
invalid
=SUMPRODUCT(B1:B3, A1)
invalid, it requires the same columns
Put this formula in any cell outside column B.
=A1*(SUM(B:B))