# XLSXReader.jl **Repository Path**: alpbrook/XLSXReader.jl ## Basic Information - **Project Name**: XLSXReader.jl - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-09 - **Last Updated**: 2024-06-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # XLSXReader [![Build Status](https://travis-ci.org/mpastell/XLSXReader.jl.svg?branch=master)](https://travis-ci.org/mpastell/XLSXReader.jl) [![Build status](https://ci.appveyor.com/api/projects/status/loy2yuar7usavbvd/branch/master?svg=true)](https://ci.appveyor.com/project/mpastell/xlsxreader-jl/branch/master) [![Coverage Status](https://coveralls.io/repos/mpastell/XLSXReader.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/mpastell/XLSXReader.jl?branch=master) [![codecov.io](http://codecov.io/github/mpastell/XLSXReader.jl/coverage.svg?branch=master)](http://codecov.io/github/mpastell/XLSXReader.jl?branch=master) This package reads Excel xlsx files to a Julia DataFrame. Contents are parsed from XML using `LightXML.jl`. The package works, but currently supports limited cell types. Currently reads: * Floats and Integers * Strings * Basic date formats * Booleans ## Usage ```julia using XLSXReader readxlsx("file.xlsx") # Reads first sheet readxlsx("file.xlsx", 2) # Read by sheet number readxlsx("file.xlsx", "sheet4") # Read by sheet name ```