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