xler v0.2.2 Xler View Source
Documentation for Xler.
Link to this section Summary
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"]]}
Link to this function
worksheets(filename) View Source
Show the available worksheets for file.
Examples
iex> Xler.worksheets("file.xls")
{:ok, ["Sheet 1"]}