...

/

Using excelize When Dealing With Excel

Using excelize When Dealing With Excel

Understand how we can perform operations in Excel using the excelize package.

Microsoft’s Excel has been a popular tool for visualizing data since the 1980s. While the power of the program has grown, its simplicity has helped to make spreadsheets a common tool in most businesses.

While Excel is not CSV, it can import and export data in CSV. For basic usage, we can use the encoding/csv package.

However, if our organization uses Excel, it can be more helpful to use its native format to write the data and supply visual representations of the data. excelize is a third-party Go package that can help us do that.

Note: The package can be found here on GitHub. Additionally, this is the link to Excelize's official documentation.

There is also an online version of Excel that is part of Microsoft's Office 365. We can manipulate spreadsheets directly there; however, we may find it easier to manipulate the spreadsheet offline and then import it.

If you are interested in the REST API, you can read about it here on Microsoft's website.

Creating a .xlsx file and adding some data

Excel has a few characteristics that are helpful to understand:

    ...