https://issues.apache.org/bugzilla/show_bug.cgi?id=53954

--- Comment #3 from Andreas Goetz <cpui...@gmx.de> ---
The proposed fix would be to enhance parseColRef like this:

    private static int parseColRef(String refStrPart) {
        try {
            return Integer.parseInt(refStrPart) - 1;
        } catch (NumberFormatException e) {
            return CellReference.convertColStringToIndex(refStrPart);
        }
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to