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 ?
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.
The go-ole
package looks like a way to go if you want to drive an Excel process via COM to read your file.