Xler (xler v0.6.0) View Source

Documentation for Xler.

Link to this section Summary

Functions

Parses a specific worksheet from a file

Show the available worksheets for file.

Link to this section Functions

Link to this function

parse(filename, worksheet)

View Source

Parses a specific worksheet from a file

Returns an list (of rows) with a list of columns

Examples

iex> Xler.parse("file.xls", "Sheet 1")
{:ok, [["Date", "Text"]]}

Show the available worksheets for file.

Examples

iex> Xler.worksheets("file.xls")
{:ok, ["Sheet 1"]}