I have a very simple excel file (.xlsx) it contains just 2 columns and 2 rows with values.
But when I run the code below I get ArgumentError: no default `Tables.columns` implementation for type: XLSX.XLSXFile, for both readxlsx and openxlsx Why is that? Is it something with DataFrames or with XLXS pkg?
The excel file looks like this 
| text | text |
------------------
| 0 | 1 |
------------------
using DataFrames
using XLSX
df = XLSX.readxlsx("Test1.xlsx")
As a suggested solution I'm running the following code The excel file looks like this
| text | text |
------------------
| 0 | 1 |
------------------
using DataFrames
using XLSX
df = DataFrame(XLSX.readtable("Test1.xlsx", "Blad1"))
but that gives the following error ArgumentError: 'Tuple{Vector{Any}, Vector{Symbol}}' iterates 'Vector{Any}' values, which doesn't satisfy the Tables.jl `AbstractRow` interface
The tutorial includes a relevant example with
readtable:I've tried to replicate your setup as closely as possible with the information you've given. However, I can't replicate your error with
readtable:This makes me suspect that the problem is elsewhere. Could you please try running everything in a temporary project, as I've done here? I want to be sure that another package is not interfering.