Not so much a problem as just a question on a weird occurrence.
I have two sheets, one with a checkbox column formula [sheet1] and one with a summary row [sheet2]. I have a very simple reference on sheet2 that is =COUNT({sheet1 Range 1}), where {sheet1 Range 1} is checkbox:checkbox. For some reason, COUNT({sheet1 Range 1}) always returns 50 on an empty sheet.
The fix for this is simple, it's COUNTIF({sheet1 Range 1},1) instead of COUNT({sheet1 Range 1}). I realize that COUNT({sheet1 Range 1}) wouldn't have worked to begin with because an unchecked checkbox is a 0 value and therefore would get counted. It wasn't what I needed and the fixed version is just better.
The question is: why was it giving a COUNT of 50?
I know an empty sheet starts with 50 rows, but I thought that Smartsheet ignored rows with no values in them. So a sheet with 20 rows but only 4 have any value in them would be recognized as only having 4 rows for the purpose of things like COUNT, AVG, SUM, etc when referencing entire columns.
Additionally, I tried adding info to the sheet to see if it was just confused by the lack of information. With two rows with data and checkboxes checked it still counted 50. Two rows with data and checkboxes unchecked: still 50. There are no Auto-number, date created/modified, or modifier columns. I haven't even added the form that will eventually feed sheet1. For the record, I've tried refreshing, changing the reference to a different checkbox column, making copies of both sheets, and even rebuilding the formula and the reference from scratch on another sheet. So, I dunno
Again, this isn't an active problem or something I have to work around. I just want to understand why the program is behaving this way. Any ideas?