diff options
author | xuri <xuri.me@gmail.com> | 2019-02-22 22:17:38 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-02-22 22:17:38 +0800 |
commit | 0072bb731043f89ce978778b9d7fdc6160e29de0 (patch) | |
tree | c44726082c606dbbcf6fa5c1dfba31cd81993c84 /col.go | |
parent | e780e41e0222517caa9c69030b5955ab2b458a49 (diff) |
resolve the issue corrupted xlsx after deleting formula of cell, reference #346
Diffstat (limited to 'col.go')
-rw-r--r-- | col.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -322,6 +322,10 @@ func (f *File) InsertCol(sheet, column string) { // // xlsx.RemoveCol("Sheet1", "C") // +// Use this method with caution, which will affect changes in references such +// as formulas, charts, and so on. If there is any referenced value of the +// worksheet, it will cause a file error when you open it. The excelize only +// partially updates these references currently. func (f *File) RemoveCol(sheet, column string) { xlsx := f.workSheetReader(sheet) for r := range xlsx.SheetData.Row { |