My spreadsheet has started recognizing blank cells as text and not zeroes.
Every row in the RequirementNumber column is filled in with this formula
=IF(ISBLANK([Requirement]2), "", [RequirementNumber]1 + 1)
The formula used to pick up "" cells in the row above it as a numeric zeros, now it is picking it up as blank text and making all of the increments in text not numeric values.
my numbers now look like this:
blank
1
11
111
1111
Instead of:
blank
1
2
3
4
I can manually fix this by deleting the formula in the blank cell and replacing it with a numeric zero. The formulas adjust below and the numbering corrects itself. If I delete the zero so the cell is blank again the numbering stays accurate.
Any ideas?