Forum Discussion
brodskyfu
Oct 09, 2024Copper Contributor
Why SUM doesn't work out with dynamic array?
As above
Harun24HR
Oct 09, 2024Bronze Contributor
brodskyfu You need to transpose first the range Q7:S7 then multiply and sum.
=SUM(TRANSPOSE(Q7:S7)*R10#)
SUMPRODUCT() will also work.
=SUMPRODUCT(TOCOL(Q7:S7),R10#)
- brodskyfuOct 09, 2024Copper Contributor
What is the difference in Excel mechanism behind?
- SergeiBaklanOct 09, 2024MVP
- brodskyfuOct 09, 2024Copper ContributorThanks buddy!
- brodskyfuOct 09, 2024Copper ContributorI checked the Transpose function, it just looks like that Transpose just rotates the range, but what is the reason behind the difference? I want understand it deeper. Tks~