I am having a huge amount of trouble with calculated columns, and errors with them when adding new rows to a table. I am trying to maintain a list of sales while dynamically maintaining a list of unique customers who make purchases. I am using a helper column that counts new customers are they are added to the transaction table. However, when I add rows to the table, my helper column's formula is changing on its own. Please help!
Here is a link to a worksheet with an example (source: https://people.highline.edu/mgirvin/ExcelIsFun.htm):
https://people.highline.edu/mgirvin/YouTubeExcelIsFun/EMT815-818.xlsx
Repro steps (should take 1 minute to reproduce):
Here is a link to a worksheet with an example (source: https://people.highline.edu/mgirvin/ExcelIsFun.htm):
https://people.highline.edu/mgirvin/YouTubeExcelIsFun/EMT815-818.xlsx
Repro steps (should take 1 minute to reproduce):
- Open worksheet
- Enable Editing
- Go to tab "(817&818) (an)"
- Observe formula in O405
- =SUM(IF(COUNTIF(B$2:B405,B405)<>1,0,COUNTIF(B$2:B405,B405)),O404)
- Create a new row in this table by entering content into A406
- O406 reflects the correct formula
- =SUM(IF(COUNTIF(B$2:B406,B406)<>1,0,COUNTIF(B$2:B406,B406)),O405)
- Create another new row in this table by entering content into A407
- O406 formula has changed to
- =SUM(IF(COUNTIF(B$2:B407,B406)<>1,0,COUNTIF(B$2:B407,B406)),O405)