Open Jan-Walther-Blackbit opened 3 weeks ago
When you merge cells, Excel actually writes the value to only the first one. That's why you get this result
Ok, but is it possible to detect if a cell is merged with another one?
And you can use:
For example
if ($sheet->isMerged('B3')) {
$range = $sheet->mergedRange('B3');
}
Is there a way to support merged cells? In this case all columns within the merge range should return the same value. Currently only the first column in the merge range has the value, the other ones have
""
.