How to read an excel file in go?

excel, go

Solution

I haven't tried it but there's an xlsx package.

Install it with

go get -v github.com/tealeg/xlsx

Read the documentation and come back here with some code you've tried if you get stuck.

Problem

I'm new on the go lang.I want to read an excel file for procees it later, but I don't know how to read the file in go? Anyone can show me an example ?

Original source