I'm tring to import some excel rows in a recordset using vba. I use the following connection string
"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=\\vmware-host\Shared Folders\Luca\Desktop\barcode ean.xlsx;" & _
"Extended Properties=""Excel 12.0 Xml;HDR=YES;"""
with a ADODB.Command and I've used this query to get data
Select * from [Foglio1$]
now I should see 1500 rows in my recordset but it contains only 88 rows
How I can get all records??