How to write data to an Excel file using Golang

A detailed guide on how to write data to an Excel file using Golang with the excelize library.

In this article, you will learn how to write data from Golang to an Excel file using the excelize library. This is a powerful and flexible library that allows you to manipulate Excel files easily.

package main

import (
    "fmt"
    "github.com/xuri/excelize/v2"
)

func main() {
    // Create a new Excel file
    f := excelize.NewFile()
    
    // Write data to cells in the sheet
    f.SetCellValue("Sheet1", "A1", "Name")
    f.SetCellValue("Sheet1", "B1", "Age")
    f.SetCellValue("Sheet1", "C1", "City")

    f.SetCellValue("Sheet1", "A2", "Nguyen Van A")
    f.SetCellValue("Sheet1", "B2", 23)
    f.SetCellValue("Sheet1", "C2", "Hanoi")

    f.SetCellValue("Sheet1", "A3", "Tran Thi B")
    f.SetCellValue("Sheet1", "B3", 34)
    f.SetCellValue("Sheet1", "C3", "Da Nang")

    f.SetCellValue("Sheet1", "A4", "Le Van C")
    f.SetCellValue("Sheet1", "B4", 29)
    f.SetCellValue("Sheet1", "C4", "Ho Chi Minh City")

    // Save the Excel file
    if err := f.SaveAs("data.xlsx"); err != nil {
        fmt.Println(err)
    } else {
        fmt.Println("Data written to Excel file successfully!")
    }
}

Detailed explanation

  1. import "github.com/xuri/excelize/v2": Import the excelize library to work with Excel files.
  2. f := excelize.NewFile(): Create a new Excel file.
  3. f.SetCellValue(...): Write data to cells in the Excel file.
  4. f.SaveAs("data.xlsx"): Save the Excel file with the name data.xlsx.
  5. fmt.Println(...): Display a message indicating successful data writing or an error.

System Requirements

  • Golang version 1.16 or higher
  • Library: excelize

How to install the libraries needed to run the Golang code above

Run the following command in the terminal:

go get github.com/xuri/excelize/v2

Tips

Make sure you have write permissions in the directory where you want to save the Excel file. Also, if you're new to Golang, start with simple data before working with more complex Excel files.



Related

Converting a string variable into Boolean, Integer or Float type in Golang

A guide on how to convert a string into Boolean, Integer, or Float types in Golang. This article will help you understand how to use Go's built-in functions to work with different data types.
Common Functions When Using Selenium Chrome in Golang

This article compiles commonly used functions when working with Selenium Chrome in Golang, including installation, creating a session, navigating web pages, and interacting with page elements.
Multithreading in Golang with Goroutine

A guide on how to handle multithreading in Golang using Goroutine, allowing efficient parallel processing and CPU optimization.
How to pass Authentication Header Token when POSTing data to an API using Golang

This guide explains how to pass an Authentication Header Token when making a POST request to an API using Golang. It covers handling HTTP requests, adding a token to the Header for authentication, and sending data to an API.
Guide to creating a multiple image upload form using Golang

A step-by-step guide on how to create a form to upload multiple images simultaneously in Golang using the `net/http` library.
JSON Web Token Authentication with Golang

A guide on how to implement JSON Web Token (JWT) authentication in a Golang application. This article details how to create, sign, and verify JWTs to secure an API.
Slices in Golang: Usage and examples

This article explains how to work with slices in Golang, including how to declare, access, and manipulate slices—a flexible way to handle arrays more efficiently in Go.
How to compare two slices of bytes in Golang

This article explains how to compare two byte slices in Golang. Golang provides built-in methods and libraries to easily and accurately compare two byte slices.
How to INSERT data into a MySQL database using Golang

A guide on how to use Prepared Statements in Golang to insert data into a MySQL database with multiple parameters.
How to Post Data to API Using Golang

This article guides you on how to send data to an API using the POST method in Golang, helping you better understand how to interact with web services.

main.add_cart_success