Hello,
I have a cell in an Excel 2003 sheet, that has a simple "=SUM(" formula.
This formula is related to some linked files, so the formula is longer than 255 chars, like:
Code:
=SUM(//Server1/Path1/Path2/Path3/Blah_Blah_Blah/File1.xls!A1;//Server1/Path1/Path2/Path3/Blah_Blah_Blah/File1.xls!A1;//Server1/Path1/Path2/Path3/Blah_Blah_Blah/File1.xls!A1;//Server1/Path1/Path2/Path3/Blah_Blah_Blah/File1.xls!A1;//Server1/Path1/Path2/Path3/Blah_Blah_Blah/File1.xls!A1;//Server1/Path1/Path2/Path3/Blah_Blah_Blah/File1.xls!A1...)
And so on... It's so long that has more than 1000 chars on the formula definition.
The thing is when I try via VBA code to "show" or know the "LEN(" of this formula says:
(see attachment)
Any ideas how to solve this?
I mean, I need to "catch" that error... and "On Error GoTo XXXX" doesn't work.
Thanks!