Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Call Excel in Access 1

Status
Not open for further replies.

Warrioruw

Programmer
Jan 30, 2004
24
0
0
CA
Hi all,

I want to create a Access database which uses Excel to graph my data, because Excel is very capable of doing graph and chart. And I want to call Excel object programmably in Access VB enviroment. Any help would be appreciated.
 
This is how to create an excel objet in VBA

Dim objXL As Object
Set objXL = CreateObject("Excel.Application")
'your code
Set objXL = Nothing

Look at this, it's a start;)
jb
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top