This ^ principle (keeping data types consistent in any column, either text or numbers) has greatly improved the performance of my workbooks.
How do #ERROR codes behave here? I have tried ISTEXT and ISNUMBER, and they appear to be neither.
I can force an error code to become like a number, or like text, to make completely consistent data. eg, IFERROR(... , 0)
or IFERROR(... , "")
.
Is this necessary to ensure good performance? Or maybe I don’t need to worry about error codes, if they’re useful?
Thanks.