Howto walk through value List
Posted: Sat Apr 06, 2013 3:54 pm
I try to walk trough an ValueList an plott the Values from each value column line per line in an Grid, but the code delivers only one const. value and not all values in the value column?
What is wrong?
Thanks and Best Regards
Code: Select all
With frm.TChart1.Series.Item(t).ValuesLists
For s = 0 To .Count - 1
ActiveCell.Cells.Item(zeile, spalte).Value = .Item(s).Name & "_Value_" & frm.TChart1.Series.Item(t).TitleOrName
For zeile = 2 To .Item(s).Count
ActiveCell.Cells.Item(zeile, spalte).Value = .Item(s).Value
Next
spalte = spalte + 1
zeile = 1
Next
End With
Thanks and Best Regards