Consider the following formula: =SUM(F13:OFFSET(E13,0,12))
The current version of XLParser parses this formula and returns one ParserReference with MinLocation of F13 and MaxLocation of E13. However, this represents an invalid range. Two ParserReferences are expected: one for F13 and one for E13.
Consider the following formula:
=SUM(F13:OFFSET(E13,0,12))
The current version of XLParser parses this formula and returns one ParserReference with
MinLocation
ofF13
andMaxLocation
ofE13
. However, this represents an invalid range. Two ParserReferences are expected: one forF13
and one forE13
.