here is my macro:
Worksheets("Sheet1").Activate
startcol = 1
For profile = 1 To 240
Range(Cells(1, startcol), Cells(400, startcol + 1)).Select
Charts.Add
ActiveChart.ChartType = xlXYScatterLines
ActiveChart.Location Where:=xlLocationAsNewSheet
Sheets("Sheet1").Select
startcol = startcol + 2
profile = profile + 1
Next profile
why sheet names are in row one1, every other one, hence the startcol +2 counter
thanx