XLSX.jl icon indicating copy to clipboard operation
XLSX.jl copied to clipboard

Excel file reader and writer for the Julia language.

Results 73 XLSX.jl issues
Sort by recently updated
recently updated
newest added

Both `sheet["A:U"]` and `sheet["A1:U100"]` are valid cell ranges but the first case filters for empty rows. This is an unexpected behaviour and a very subtle one at that. It should...

Addresses issue #210 Simple change to `read.jl` to pass through Custom XML internal files in the same way as binary files are already passed through instead of simply ignoring them....

I often find myself doing: ``` df = DataFrame(XLSX.readtable("myfile.xlsx", 1)) # Realize column names are whacky using CSV rename!(df, CSV.normalizenames(names(df))) ``` Which isn't too much hassle but I was wondering...