J.Ty.
Well-known Member
- Joined
- Feb 4, 2012
- Messages
- 1,118
- Office Version
- 365
- 2013
- 2010
- Platform
- Windows
- Web
I have a fundamental problem with understanding how Excel tables work. I expected that the mechanism which extends the table when a new rows is added would be simple: the formulas from the last row are copied, exactly as if there were filled down one row, ranges where necessary exteded to include the now row. However, the practical implementation seems very much different and hard to explain.
I did a small table with 3 rows od data and 2 columns with formulas, and then added a new row of data, causing it to automatically modify the existing formulas and create new formulas in the added row. The result is so odd that I have no idea how this actual mechanism works and how to predict its results without making experiments each time. You can test the file here. I used Excel 365. I do have dynamic array formulas, if that matters.
J.Ty.
I did a small table with 3 rows od data and 2 columns with formulas, and then added a new row of data, causing it to automatically modify the existing formulas and create new formulas in the added row. The result is so odd that I have no idea how this actual mechanism works and how to predict its results without making experiments each time. You can test the file here. I used Excel 365. I do have dynamic array formulas, if that matters.
J.Ty.
Cell Formulas | ||
---|---|---|
Range | Formula | |
C2:C4 | C2 | =COUNTIFS(A$2:A4,A2,B$2:B4,"<="&B2) |
D2:D4 | D2 | =COUNTIF(A$1:A2,Sheet1!$A2) |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C2, C5 | C2 | =COUNTIFS(A$2:A5,A2,B$2:B5,"<="&B2) |
D2:D3, D5 | D2 | =COUNTIF(A$1:A2,Sheet1!$A2) |
C3:C4 | C3 | =COUNTIFS(A$2:A5,A3,B$2:B5,"<="&B3) |
D4 | D4 | =COUNTIF(A$1:A5,Sheet1!$A4) |