You state that you modified the macro and are getting an error in the Set Cell Range.vi. This tells me that you ran the Macro Example.vi, then modified the macro, then saved your Excel workbook. What you have now is a workbook with two sheets. The first sheet is the sample chart, and the second is the worksheet with the sample data.
The problem is that Excel remembers that the chart was the last sheet used and re-opens with that sheet active. The Macro Example.vi selects the sheet by Sheets(1), not WorkSheets(1) or Sheets("Sheet1"), and therefore is trying to write your data to the chart. If you delete the chart sheet, you should be able to modify the macro to create 8 new charts without adding any sheets.
Michael
www.abcdefirm.com