Vba to retrieved data from excel and load it to my query (1 Viewer)

fluffyvampirekitten

New member
Local time
Today, 20:15
Joined
Aug 13, 2015
Messages
3
Current situation is that I have this form with a chart.
Row Source :
Code:
SELECT PolyWrongRegInsCount.[INSTITUTION], PolyWrongRegInsCount.[NO_OF_GROUP]
FROM PolyWrongRegInsCount;

PolyWrongRegInsCount; <- This table is one of the queries that I created .

However, the data is manually added.
The problem is : I want to get the data from excel spreadsheet.
And load into my queries

Any idea on how to solve this ?
Thanks in advance :D
 

namliam

The Mailman - AWF VIP
Local time
Today, 14:15
Joined
Aug 11, 2003
Messages
11,695
using Docmd.transferspreadsheet you can import excel sheets into your table.
 

Users who are viewing this thread

Top Bottom