Hello,

I am trying to import data from Access table including headers into an 2d Array, using the below code only getting the records not the fields names.

Kindly help

Set rst = New ADODB.Recordset
sSQL = "SELECT * FROM tblEmp_Master ORDER BY " & "[SNo]"
rst.Open sSQL, cnt
snEmp = rst.GetRows(rst.RecordCount)
Thanks
Jude