IT WORKS!!! See below...
news:kphpgn$vs5$1...@speranza.aioe.org...
Dear h2so4,
First, let me say thank you so much for your kind help and time :-)
I was able to look at your code and the code generated by Excel 2003 for a
one graph macro and make it all work. Here is the final result:
Sub MakeHundredsOfGraphs()
'ASSUMES ONE BLANK ROW SEPARATES ONE GRAPH'S DATA FROM THE NEXT
fs = 1 'FIRST LINE OF DATA FOR CURRENT GRAPH
i = 1 'LAST LINE OF DATA FOR CURRENT GRAPH
While Sheets("Sheet1").Cells(fs, 1) <> ""
i = fs + 1
While Sheets("Sheet1").Cells(i, 1) <> ""
i = i + 1
Wend
Charts.Add
With ActiveChart
.Select
.ChartType = xlLine
.SetSourceData Source:=Sheets("Sheet1").Range("A" & fs & " : A" & i - 1),
PlotBy:=xlColumns
.Location Where:=xlLocationAsNewSheet
.Legend.Delete
End With
Sheets("Sheet1").Select
i = i + 1
fs = i
Wend
End Sub
Again, thank you so much for your help. Have a wonderful evening there in
beautiful Belgium.
Many blessings,
Julian