Forum Discussion
FoliniCarlo
Feb 14, 2021Copper Contributor
Wrong formula recalculation on dynamic table
Hi, I have a table with 3 columns (excel 2013). The last column has a formula that computes sum of "value" column from previous rows with same "product" name. This tables auto expand, but formula is...
- Feb 14, 2021
One possibility is to give up the practice of direct cell referencing entirely and use structured references throughout.
= SUMIF( INDEX([Product],1):[@Product], [@Product], INDEX([value],1):[@value] )
PeterBartholomew1
Feb 14, 2021Silver Contributor
One possibility is to give up the practice of direct cell referencing entirely and use structured references throughout.
= SUMIF(
INDEX([Product],1):[@Product],
[@Product],
INDEX([value],1):[@value]
)
- FoliniCarloFeb 14, 2021Copper Contributor
Thanks PeterBartholomew1 it works perfectly!
Italian translation for your formula
=SOMMA.SE(INDICE([Product];1):[@Product];[@Product];INDICE([value];1):[@value])