is it possible to treat the double dashes (--) or empty cells as zeros?
I have a column that sums up values in a few other columns. One of those columns have now stopped being filled with data. Because of this column now having empty cells or cells with --, the summation column does not calculate the sum. I can of course keep typing in zeros in this column but would prefer not to.
Can I somehow fix this using row indices? I'm summing three columns. Can I specify to sum all three from rows 1 to e.g. 100 and then from row 101 sum only two of the columns?
Hi, Yes, of course. Select output column -> right click -> Set column values (or Ctrl+Q) -> put your formula (eg Col(A)+Col(B)+col(C)) -> select desired rows range (1 - 100) -> ok. And the same for rest of rows with another formula. BR,
Thanks. In column D I did Col(A)+Col(B)+col(C) for rows 1 to 100 with None Recalculate and then for the same column D did Col(A)+Col(B) for rows 101 to <auto> with Auto Recalculate.