I want to use SUMPRODUCT so that it will work inside cell that contains string of binary numbers for example:
Cell A1 = "011001" Cell B1 = "123456"
Now I want to use SUMPRODUCT to perform weighted average, cell A1 contain numbers and cell B1 contain weights, proper formula should work like this:
1st element (0) = weight (1)
2nd element (1) = weight (2)
3rd element (1) = weight (3)
4th element (0) = weight (4)
5th element (0) = weight (5)
6th element (1) = weight (6)
This imaginary formula SUMPRODUCT(A1;B1)/SUM(B1) should be equal =~52% If someone know any solution for that problem thank you very much in advance.

