Help me in using Plots Pkg, scatter

using XLSX
using Plots
Data = XLSX.readxlsx(“VRPTW.xlsx”)
Xd=Data[“C101!E3:E28”]
Yd=Data[“C101!F3:F28”]

#Display the data
scatter(Xd,Yd)

but
Cannot convert Array{Any,2} to series data for plotting
error(::String) at error.jl:33
_prepare_series_data(::Array{Any,2}) at series.jl:8
_series_data_vector(::Array{Any,2}, ::Dict{Symbol,Any}) at series.jl:27
macro expansion at series.jl:144 [inlined]
apply_recipe(::AbstractDict{Symbol,Any}, ::Type{RecipesPipeline.SliceIt}, ::Any, ::Any, ::Any) at RecipesBase.jl:282
_process_userrecipes!(::Any, ::Any, ::Any) at user_recipe.jl:36
recipe_pipeline!(::Any, ::Any, ::Any) at RecipesPipeline.jl:70
_plot!(::Plots.Plot, ::Any, ::Any) at plot.jl:172
plot(::Any, ::Vararg{Any,N} where N; kw::Any) at plot.jl:58
(::RecipesBase.var"#plot##kw")(::NamedTuple{(:seriestype,),Tuple{Symbol}}, ::typeof(plot), ::Array{Any,2}, ::Array{Any,2}) at plot.jl:52
scatter(::Any, ::Vararg{Any,N} where N; kw::Any) at RecipesBase.jl:403
scatter(::Any, ::Vararg{Any,N} where N) at RecipesBase.jl:403
top-level scope at VRPTW:19

Well, the error message pretty much says it all:
The data you are trying to plot is a 1 x N range from the excel file, which is read into a Matrix (not a Vector).
When you pass a Matrix to scatter, the columns are interpreted as series).
I think you want

scatter(vec(Xd), vec(Yd))