diff options
Diffstat (limited to 'xmlWorkbook.go')
-rw-r--r-- | xmlWorkbook.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlWorkbook.go b/xmlWorkbook.go index f00a0b8..6572033 100644 --- a/xmlWorkbook.go +++ b/xmlWorkbook.go @@ -151,7 +151,7 @@ type xlsxSheets struct { // not checked it for completeness - it does as much as I need. type xlsxSheet struct { Name string `xml:"name,attr,omitempty"` - SheetID string `xml:"sheetId,attr,omitempty"` + SheetID int `xml:"sheetId,attr,omitempty"` ID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"` State string `xml:"state,attr,omitempty"` } |