Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 125
Default Need help with SeriesCollection Object Please !

Well Peter your explanation of my questions make sense and are sound answers.
You seem very experienced with Excel and VBA :)

And your code is very clean I like that I myself am always trying to make my
programs more efficient and clean code. However I am probably still at a
novice to indermediate level with Excel & VBA so it is good to have responses
from someone like yourself.

To bad there was not a way of connecting with you more for future code
collaboration and idea sharing. Perhaps there is posability of further
communication threw email. If that is something that you would be ok with you
could let me know. My email is )

Dan Thompson

"Peter T" wrote:

I have a few questions regarding your code.

1) Why did you have your for next loop in the GetSourceSheet function
looping backwards threw your array and not forwards
2) Why did you use 4 Elements in your Array and then the use of the Exit
for
which seems to be unnessicary


To start with the first part of your Q2,

=SERIES(Series-name,Catagory or X-Values,Y-Values, Order)
after doing the Split the 4 element array will hold the following *

Series-name
Catagory or X-Values
Y-Values
Index

Re Q1
Actually I started from the last but one element
For i = UBound(arr) - 1 To 0 Step -1

Although the Series-name can be linked to a cell, often it's not, ditto the
category values. The Y-Values is by far the most likely to be linked to
cells, so might as well start with that, then the next most likely the
X-Values.

Typically, 99+%, will get the source from the 3rd element, then bail out
with Exit For having got the range (don't continue the loop as you appear to
be doing). But if not, try a long shot and loop backwards just in case a
range can be made from either of the earlier elements.

Note, the source in the formula might not be a cell-ref, eg could be in
named range and that'll also get picked up this way. However data can be
data in the formula, eg {1,2,3}, or a named array. These of course are not
linked to cells at all.

You'd probably want to include some more checks to ensure you've got a valid
series formula beforehand.

* a bubble chart has an additional 5th section for the bubble sizes.

Regards,
Peter T

"Dan Thompson" wrote in message
...
Well Peter you are right I tried my code with a worksheet name that has a
space ie.. "Sheet 1" and it fails because of the preceding and ending
apostrophes added by Excel when a worksheet has a space in the name

I have tried your code and indeed it does work more consistently than
mine.
by the way I was unaware of the "Split" Function very nice I can think of
several other macros I have which could benefit from that one. And the use
of
turning the split string into a range and using the "Parent " property to
extract the table name seems to be a much more reliable of way doing it.

I have a few questions regarding your code.

1) Why did you have your for next loop in the GetSourceSheet function
looping backwards threw your array and not forwards
2) Why did you use 4 Elements in your Array and then the use of the Exit
for
which seems to be unnessicary

To Illistrate my questions below is my edited version of your function. If
there is some reason that you did your function the way you did which
makes
it more reliable could you please explain it to me ?

Function GetSourceSheet(sFmla As String, sWSname, sFile As String) As
Boolean
Dim i As Long
Dim arr
Dim rng As Range

On Error Resume Next
arr = Split(Mid$(sFmla, 9, Len(sFmla) - 9), ",")
For i = 0 To 1
Set rng = Range(arr(i))
If Not rng Is Nothing Then
sWSname = rng.Parent.Name
sFile = rng.Parent.Parent.Name
GetSourceSheet = True
End If
Next
End Function


Dan Thompson



"Peter T" wrote:

Well Peter you have got me scratching my head on this one I noticed
when I
ran my code on certain other charts sometimes it would return
('Sheet1')
and
other charts it would return as it should (Sheet1)

That's a different issue. I'll bet you never returned precisely 'Sheet1'
but
you may well have returned say 'Sheet 1'. Spaces and some other
characters
in the sheet name introduce the embracing apostrophes. Easily
correctable,
replace the apostrophes with "", but that aside I still don't think your
routine is right.

Only thing I can figure is maybe difference in Excel versions being
used
like I said I am using Excel 2000 perhaps newer versions handle things
differently ??

No, Excel 97 to Excel 2007 will work the same in this respect

If you use the routine I suggested you may find your head suffers less
from
over scratching! Also it might cater for more scenarios than you may have
yet considered.

Regards,
Peter T



"Dan Thompson" wrote in message
...
Well Peter you have got me scratching my head on this one I noticed
when I
ran my code on certain other charts sometimes it would return
('Sheet1')
and
other charts it would return as it should (Sheet1) so I changed my code
to
use .FormulaR1C1Local and that seems to work consistantly for both the
charts
that were returning normal (Sheet1) and the ones that were returning
('Sheet1') I don't know why you are getting the comma though I have
run
several tests and I am not getting the preceding comma, like I said I
did
have some issues with some charts returning with preceding and post
single
quotes ('Sheet1') however the .FormulaR1C1local seems to do the trick
for
eliminating that problem

I ran your test code though and here are the results for all the
.formula
methods used plus I added the R1C1 too.

Sub test3()
Dim s As String
s = ActiveChart.SeriesCollection(1).Formula
Debug.Print "Formula", s
Debug.Print GetSheetName(s)
s = ActiveChart.SeriesCollection(1).FormulaLocal
Debug.Print "FormulaLocal", s
Debug.Print GetSheetName(s)
s = ActiveChart.SeriesCollection(1).FormulaR1C1Local
Debug.Print "FormulaR1C1Local", s
Debug.Print GetSheetName(s)
End Sub

Function GetSheetName(ByVal ChartSeriesString As String) As String
Dim FChar As Integer, LChar As Integer
FChar = InStr(1, ChartSeriesString, ",") + 1
LChar = InStr(1, ChartSeriesString, "!") - 1
GetSheetName = Mid(ChartSeriesString, FChar, LChar - FChar + 1)
End Function

debug results

Formula =SERIES("20d MA Spot
Price",Sheet1!$A$2312:$A$5852,Sheet1!$E$2312:$E$58 52,1)
Sheet1
FormulaLocal =SERIES("20d MA Spot
Price",Sheet1!$A$2312:$A$5852,Sheet1!$E$2312:$E$58 52,1)
Sheet1
FormulaR1C1Local =SERIES("20d MA Spot
Price",Sheet1!R2312C1:R5852C1,Sheet1!R2312C5:R5852 C5,1)
Sheet1

Only thing I can figure is maybe difference in Excel versions being
used
like I said I am using Excel 2000 perhaps newer versions handle things
differently ??

Dan Thompson

"Peter T" wrote:

That is strange when I use my code it returns the Sheet Name
(String)
Fine
without the preceding comma I did notice that you are using
Activechart.Seriescollection(1).formula I am using .formulalocal

Sub test3()
Dim s As String
s = ActiveChart.SeriesCollection(1).Formula
Debug.Print "Formula", s
Debug.Print GetSheetName(s)
s = ActiveChart.SeriesCollection(1).FormulaLocal
Debug.Print "FormulaLocal", s
Debug.Print GetSheetName(s)
End Sub

Function GetSheetName(ByVal ChartSeriesString As String) As String
Dim FChar As Integer, LChar As Integer
FChar = InStr(1, ChartSeriesString, ",") + 1
LChar = InStr(1, ChartSeriesString, "!") - 1
GetSheetName = Mid(ChartSeriesString, FChar, LChar - FChar + 1)
End Function

debug results

Formula =SERIES(,,Sheet1!$A$1:$A$3,1)
,Sheet1
FormulaLocal =SERIES(,,Sheet1!$A$1:$A$3,1)
,Sheet1

As you can see, a comma both ways

I am using Excel 2000 so I don't know if that has
somthing to do with it.

No, that wouldn't make a difference, but if the series name is linked
to
a
cell it would (but can't be sure it always is).

I am not conserned at this time with
charts that are linked to data in different workbooks

The addin I mentioned also has a function to "resource" data from one
location to another, eg from an external wb to the chart wb. To cater
for
most scenarios was amount of work.

Regards,
Peter T


"Dan Thompson" wrote in
message
...
Thanks Peter for your repsonse

That is strange when I use my code it returns the Sheet Name
(String)
Fine
without the preceding comma I did notice that you are using
Activechart.Seriescollection(1).formula I am using .formulalocal I
don't
know
if that makes a differnce in the string returned having a preceding
comma
perhaps my math is off by 1 placement in the string but strangely
enough
my
code works on my system ? I am using Excel 2000 so I don't know if
that
has
somthing to do with it.

But yes you are right the objective of the macro is to remove all
data
that
is not relevent to the active chart. I am not conserned at this time
with
charts that are linked to data in different workbooks however you
bring
up
a
good point that I may need to incorporate into this code in the
future.

I will try your code out and compare thanks for your input on this
today.

Dan Thompson

"Peter T" wrote:

Your GetSheetName routine doesn't seem right, I get ",Sheet1" with
the
preceding comma
The following if anything is slightly more complicated, but more
reliable.
It will also return the workbook name which might be relevant if
the
data
and chart are not in same file.

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
SeriesCollection object Mike Archer Excel Programming 3 November 17th 08 11:48 PM
SeriesCollection Object Issue Ronald R. Dodge, Jr.[_2_] Excel Programming 9 March 24th 08 08:56 PM
Method 'SeriesCollection' of object '_Chart'failed Dennis Mak[_2_] Excel Programming 0 July 8th 06 07:49 AM
Formatting a new seriescollection in a chart object Paul Willman Excel Programming 2 August 24th 04 08:22 PM
Adding to the SeriesCollection of a chart object in VB6 E_R[_27_] Excel Programming 0 August 24th 04 06:38 PM


All times are GMT +1. The time now is 11:07 PM.

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

About Us

"It's about Microsoft Excel"