#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 244
Default Data series

I am writing a macro that changes the series of charts. I have had big
trouble in getting this to work, forcing me to manually delete and then
repaste series on a daily basis to get it to work. Does anyone have any tips
regarding what to do to get the series to change I would be very happy. I
have some questions in this field:
1) My code now simply sets new values like this:

ActiveChart.SeriesCollection(priceArray(k)).Values =
Sheets(priceArray(0)).Range(rng(k).Offset(i, 0).Address & ":" &
rng(k).Offset(j, 0).Address)

Is this recommended or is there ant other way you should do it e.g.
SetSourceData or something?

2) I have tried using substitute/replace? Is that better? Basically if
anyone has any tips in this area I would be very grateful! Thank you all very
much!

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 577
Default Data series

Depends on how your data looks. If the data stays relatively the same, ie
the stuff you want to graph will always be in column 1, then you can define a
dynamic range for the column. Here's an example that I use,

ActiveWorkbook.Names.Add Name:="Xvalues1", RefersToR1C1:="=OFFSET('graph
data'!R6C1,0,0,COUNTA('graph data'!R1C1:R65536C1),1)"

This, when run, will continually update and redefine the range for you
(hence the counta section). So if your data is staying in the same column,
use this and just run a macro to refresh the dynamic range. Then just set
the series data equal to your named range (Xvalues1 in this case). You can
also check and make sure the dynamic range is what you want by clicking
control-F3

cheers,
Scott

"Arne Hegefors" wrote:

I am writing a macro that changes the series of charts. I have had big
trouble in getting this to work, forcing me to manually delete and then
repaste series on a daily basis to get it to work. Does anyone have any tips
regarding what to do to get the series to change I would be very happy. I
have some questions in this field:
1) My code now simply sets new values like this:

ActiveChart.SeriesCollection(priceArray(k)).Values =
Sheets(priceArray(0)).Range(rng(k).Offset(i, 0).Address & ":" &
rng(k).Offset(j, 0).Address)

Is this recommended or is there ant other way you should do it e.g.
SetSourceData or something?

2) I have tried using substitute/replace? Is that better? Basically if
anyone has any tips in this area I would be very grateful! Thank you all very
much!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Time Series and Creating data points within a series Cristal Excel Discussion (Misc queries) 2 November 30th 09 08:07 PM
chart with two data series and two colors for each data series bikash Charts and Charting in Excel 0 January 17th 08 02:04 AM
2nd Axes - primary series data of only 1 series disappears! cheriw Charts and Charting in Excel 1 February 23rd 06 12:32 AM
how do I plot a data series against two series Frustrated in Sydney Charts and Charting in Excel 7 February 16th 06 04:24 AM
chart data series -- plot a table as a single series hjc Charts and Charting in Excel 7 September 20th 05 05:52 PM


All times are GMT +1. The time now is 08:33 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"