I have found a interesting error. I have to work with a Sheet made for a third-party program. Some cells look to be damaged. They are filled with # symbol. Excel shows negative numbers in the formula bar window, and They should be dates.
In VBA, I can´t neither see it´s content. A simple statement: Range("cell adress").value causes the overflow error 6. The same happens when I try to see it´s type.
As I have to read all the Sheet, cell by cell, the only solution I have imagined is manage this error. Some thing like this: On error resume next - if err > 0 ... etc.
Is it possible manage these cells without turn off the run time error?