Install and import the xlsx package
masterTo use the xlsx package in your Go project, import it using the v3 module path. If you are using Go modules, ensure your go.mod file includes the requirement for the v3 version.
It is highly recommended to use at least version 3.2.0 to access row and cell coordinate information.
import "github.com/tealeg/xlsx/v3"# In your go.mod
require github.com/tealeg/xlsx/v3 v3.2.0