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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel 2-axis line chart from Access

Status
Not open for further replies.

WildHare

MIS
Mar 1, 2002
1,801
US
Hi - I'm attempting to automate the process of sending a table to Excel and building a chart from three rows. I need to build a 2 axis line w/markers type chart, but I don't see that particular type in the list of Excel ChartType objects - I've searched the Access and Excel help files for a reference to this built in type, but can't find anything.

Does Access-Excel VBA model support this type of chart? If so, what ChartType is it?

Thanks

Jim
(PS - also placing this post in the Access VBA forum) Me? Ambivalent? Well, yes and no....
Another free Access forum:
More Access stuff at
 
Perhaps I dont understand, but would not an XY scatter chart with data point connected by a line work?
 
Probably - but I just got it to work after rechecking some syntax and several passes of Trial & Error... Thanks anyway.

Set objChart = objExcel.ActiveChart
objChart.ApplyCustomType ChartType:=xlBuiltIn, TypeName:="Lines on 2 Axes"

Jim Me? Ambivalent? Well, yes and no....
Another free Access forum:
More Access stuff at
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top