forked from p30928647/excelize
parent
478b528af1
commit
a34c81e1cc
16
cell.go
16
cell.go
|
@ -1388,6 +1388,10 @@ func (f *File) prepareCellStyle(ws *xlsxWorksheet, col, row, style int) int {
|
|||
// given cell reference.
|
||||
func (f *File) mergeCellsParser(ws *xlsxWorksheet, cell string) (string, error) {
|
||||
cell = strings.ToUpper(cell)
|
||||
col, row, err := CellNameToCoordinates(cell)
|
||||
if err != nil {
|
||||
return cell, err
|
||||
}
|
||||
if ws.MergeCells != nil {
|
||||
for i := 0; i < len(ws.MergeCells.Cells); i++ {
|
||||
if ws.MergeCells.Cells[i] == nil {
|
||||
|
@ -1395,12 +1399,20 @@ func (f *File) mergeCellsParser(ws *xlsxWorksheet, cell string) (string, error)
|
|||
i--
|
||||
continue
|
||||
}
|
||||
ok, err := f.checkCellInRangeRef(cell, ws.MergeCells.Cells[i].Ref)
|
||||
if ref := ws.MergeCells.Cells[i].Ref; len(ws.MergeCells.Cells[i].rect) == 0 && ref != "" {
|
||||
if strings.Count(ref, ":") != 1 {
|
||||
ref += ":" + ref
|
||||
}
|
||||
rect, err := rangeRefToCoordinates(ref)
|
||||
if err != nil {
|
||||
return cell, err
|
||||
}
|
||||
if ok {
|
||||
_ = sortCoordinates(rect)
|
||||
ws.MergeCells.Cells[i].rect = rect
|
||||
}
|
||||
if cellInRange([]int{col, row}, ws.MergeCells.Cells[i].rect) {
|
||||
cell = strings.Split(ws.MergeCells.Cells[i].Ref, ":")[0]
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue