View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] hermac@pandora.be is offline
external usenet poster
 
Posts: 18
Default straight line connecting first and last point on a chart


Thanks Tom,

You helped me a lot. That's indeed all it took :

.SeriesCollection.NewSeries
.SeriesCollection(2).XValues = "={0,365}"
.SeriesCollection(2).Values = "={0," & S & "}"
where S is the last point's value.

Sometimes it is so simple that it is overlooked.