Skip to content

Commit

Permalink
fix absolute reference error
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianBatista committed Nov 12, 2023
1 parent 60ee616 commit 29a286d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhpSpreadsheet/Cell/Coordinate.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ public static function coordinateIsInsideRange(string $range, string $coordinate
}
}

$boundaries = self::rangeBoundaries($range);
$boundaries = self::rangeBoundaries($coordinateData['localReference']);
$coordinates = self::indexesFromString($coordinate);

$columnIsInside = $boundaries[0][0] <= $coordinates[0] && $coordinates[0] <= $boundaries[1][0];
Expand Down

0 comments on commit 29a286d

Please sign in to comment.