11421144 func (f *File) prepareCellStyle(ws *xlsxWorksheet, col, row, style int) int { 1143 - if ws.Cols != nil && style == 0 { 1145 + if style != 0 { 1146 + return style 1147 + } 1148 + if ws.Cols != nil { 11441149 for _, c := range ws.Cols.Col { 11451150 if ...