-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validate Range Issue in v1.3 #545
Comments
Please try develop branch and confirm that it fixes your problem |
This was referenced Jun 11, 2018
billblume
pushed a commit
to billblume/PhpSpreadsheet
that referenced
this issue
Jun 12, 2018
@PowerKiKi can you push it to packagist? Easier to test :-) Thanks |
Oh, there's only one file to change. Works for me with your patch, thanks. |
Thanks for confirming, it's been released as 1.3.1 |
billblume
pushed a commit
to billblume/PhpSpreadsheet
that referenced
this issue
Jun 13, 2018
Dfred
pushed a commit
to Dfred/PhpSpreadsheet
that referenced
this issue
Nov 20, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I see Fatal error: Uncaught exception 'PhpOffice\PhpSpreadsheet\Exception' with message 'Invalid range: "Z5:AA5"' in vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Coordinate.php:537
When I debug and see:
$startCol: "W"
$endCol: "Z"
$startCol >= $endCol => FALSE =>Right
→Called from ...Coordinate::validateRange()]
$startCol : "Z"
$endCol: "AB"
$startCol >= $endCol => TRUE =>Wrong
Can you recheck?
Thanks
The text was updated successfully, but these errors were encountered: