I have a table wher I'm trying to use Sumproduct by row, and an Fixed Range out of the Table Range. The Table Range is [B4:I5] and I need to use SumProduct on [H] Column that must consider the current Row and the Price Values, on Fixed Range, [C3:G3], to calculate the Total on Column [H].
The problem is, when I inser values in the next row - Number 6 - The SumProduct Returns #Value. Can Anyone help please?
That Formula, must work for every new row, inserted in that table.
I have one more question. It's possible to put on column [I5] a Check Mark that could be Filtered, indicating that a person has already Payed?
When Cell is empty - means that the Total has not being payed; When the Cell has the CheckMArk - means that the Parson has already payed.
The Idea, as with the Sumproduct, is that when we insert values in a new row Both the Sumproduct and the CheckMark shuld be possible to insert.
Thank's in advance
The problem is, when I inser values in the next row - Number 6 - The SumProduct Returns #Value. Can Anyone help please?
That Formula, must work for every new row, inserted in that table.
PEDIDOS_AGUAS.xlsx | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | I | |||
2 | Encomenda : | 1 | 0 | 0 | 0 | 0 | 1 | |||
3 | Price : | 2,40 € | 2,80 € | 5,20 € | 2,80 € | 4,00 € | ||||
4 | Nome | Fonte Fraga/6 | Caramulo/6 | Caramulo/24 | Penacova/6 | Monchique/6 | Total € | Pago | ||
5 | Leopoldo Fernandes | 1 | 2,4 | |||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C2 | C2 | =SUBTOTAL(9,Sheet1!$C$5:$C$5) |
D2 | D2 | =SUBTOTAL(9,Sheet1!$D$5:$D$5) |
E2 | E2 | =SUBTOTAL(9,Sheet1!$E$5:$E$5) |
F2 | F2 | =SUBTOTAL(9,Sheet1!$F$5:$F$5) |
G2 | G2 | =SUBTOTAL(9,Sheet1!$G$5:$G$5) |
H2 | H2 | =SUM(C2:G2) |
H5 | H5 | =SUMPRODUCT(Sheet1!$C5:$G5,$C$3:$G$3) |
I have one more question. It's possible to put on column [I5] a Check Mark that could be Filtered, indicating that a person has already Payed?
When Cell is empty - means that the Total has not being payed; When the Cell has the CheckMArk - means that the Parson has already payed.
The Idea, as with the Sumproduct, is that when we insert values in a new row Both the Sumproduct and the CheckMark shuld be possible to insert.
Thank's in advance