Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi to all.
I'm a new user of this great forum. Excuse me for my bad english, I hope that you can understand my post. I try to make a search of my problem on your thread, but with 0 results... I'm working on a analysis department of communication agency. For share our information with other user we are using excel workook with a series of graphics sheets, linked on data sheets automatically refreshed by vba code. The data sheets takes data from query created on a access db. This workbook is opened by windows every 20 minute and , after refresh it creates a web page only with graph sheets. After this long introduction, my problem. I'm bored with the problems of the graph interface, because it's difficult to manage. My idea is to export on gif or jpg files only the graph and, by asp code or simple html, manage the position,description etc of single graph. I have this simple code: Sub SaveGraph() For i = 1 To Sheets.Count If (Sheets(i).Visible = True) Then Sheets(i).Select SheetsName = Sheets(i).Name k = 1 Do While (k <= ActiveSheet.ChartObjects.Count) ActiveSheet.ChartObjects(k).Activate ActiveSheet.ChartObjects(k).Chart.Export _ Filename:="c:\" & SheetsName & "_" & k & ".jpg" k = k + 1 Loop End If Next i End Sub Now how I can manage the resoluction of every graph? Can I change the dimension of graph? Please can you help me? Thanks to all... --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I graph data daily as a line graph across a calendar format | Charts and Charting in Excel | |||
How do I plot multiple series on one graph? - test-graph.xls (0/1) | Charts and Charting in Excel | |||
Creating a graph similar to a stacked column graph | Charts and Charting in Excel | |||
Hyperlinkage of one graph with another graph or Drill down graph | Charts and Charting in Excel | |||
Graph Excel Selection, Open Word File, Embed Graph Into Word | Excel Programming |