Notes - Go Excelize Usage

Go Excelize

Excelize is a library written in pure Go providing a set of functions that allow you to write to and read from XLAM / XLSM / XLSX / XLTM / XLTX files.

Common Functions

Open a file

wtwFile, err := excelize.OpenFile("wtw.xlsx)

Get the sheet list

sheetNames := wtwFile.GetSheetList()

Create a new sheet

err := wtwFile.NewSheet("Master")

Delete a sheet

// No error returned if the sheet not exist
err := wtwFile.DeleteSheet(masterSheetName)

Rename a sheet name

err := wtwFile.SetSheetName(tempSheetName, masterSheetName)

Set cell value

wtwFile.SetCellValue(SheetName, "A1", "Pallet#")

Get sheet data

tempRows, err := wtwFile.GetRows(tempSheetName)

Save Excel file

err := wtwFile.Save()

How to set cell value in a row sequentially?

“A4”: fmt.Sprintf("%s4", string(rune(65)))

    asciiA := 65
	titles := []string{"Pallet#", "Load ID", "Type", "Sorter", "LPNs", "Location"}
	for i, title := range titles {
		// Title on row#1: A1: Pallet#, B1: Load ID, etc.
		err := wtwFile.SetCellValue(tempSheetName, fmt.Sprintf("%s1", string(rune(asciiA+i))), title)
		if err != nil {
			return err
		}
	}

How to get the raw data from a cell?

Cell E1 holds date 1/5/2022 with style as 1/5

// Normal function
cellE, _ := f.GetCellValue(config.ClientSheetName, "E1") 
// Value: 1/5; Type: string
fmt.Printf("Value: %v; Type: %T\n", cellE, cellE)

// Get raw value
cell, _ := f.GetCellValue(config.ClientSheetName, "E1", excelize.Options{RawCellValue: true})
// Value: 44566; Type: string
fmt.Printf("Value: %v; Type: %T\n", cell, cell)

// Value: 44566; Type: float64
excelDate, _ := strconv.ParseFloat(cell, 64)

// Value: 2022-01-05 00:00:00 +0000 UTC; Type: time.Time
excelTime, err := excelize.ExcelDateToTime(excelDate, false)

// Value: 1/5; Type: string
excelTime.Format("1/2")

Tips

  • Make sure to save f.Save() the Excel file after modify it.

FAQ

Why the formula cell doesn’t updated(re-calculate)?

When writing data into a spreadsheet by using Go Excelize, the formulas in the sheet doesn’t update automatically.

You can’t update the Excel formula cells by using Excelize. See #757 But you can update the formula cells manually from Excel by pressing Ctrl+Alt+Shift+F9 or Ctrl+Alt+F9.

updatedupdated2025-08-152025-08-15