Fowmy
Well-known Member
- Joined
- Jul 10, 2008
- Messages
- 516
- Office Version
- 365
- Platform
- Windows
I think that's big limitationYou can not use dynamic array formula's in structured tables. You can drag this down
Excel Formula:=[@Sales]+IFERROR(--F2,0)
Yes, that too works. I wrote a blog back in January 2015 with this solution for running total in table : Calculate a Running BalanceAnother optionExcel Formula:=SUM(INDEX([sales],1):[@Sales])
I disagree. One of the features of a table is that you put a formula in the top cell of a column and it fills the table column with that formula. A dynamic array formula may use/require less or more rows than exist in the table. To me that doesn't fit with the workings of a table.I think that's big limitation
Cell Formulas | ||
---|---|---|
Range | Formula | |
E2:E5 | E2 | =[@Sales]+IFERROR(--E1,0) |
F2:F5 | F2 | =SUM(INDEX([Sales],1):[@Sales]) |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E2,E4 | E2 | =[@Sales]+IFERROR(--E1,0) |
F2:F4 | F2 | =SUM(INDEX([Sales],1):[@Sales]) |
E3 | E3 | =[@Sales]+IFERROR(--#REF!,0) |