'How to sum from a list of reference in Excel?

I have a list of reference in Excel the content of which I want to sum up. How would I do that ?

Let say I want to sum up the content of B1 and C2 using the list in A1:A2 ? so I get the result 11 ?

A B C
1 B1 8 0
2 C2 0 3

=sum(indirect(A1:A2)) ??

hum... find my answer asking the question ! Somehow that is working.



Solution 1:[1]

Try,

=SUM(INDIRECT(A1&":"&A2))

or,

=SUMPRODUCT(INDIRECT(A1&":"&A2))

SUM_FROM_LIST_OF_REFERENCE

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Mayukh Bhattacharya