0

forループで指定された値を取得し、それらをExcelから取得するセルの範囲として使用しようとしています。ここで何が問題になっていますか?

List<string> str = new List<string>();

        // The follwing increments by 4, and starts at 25

        for (int i = 25; i <= lastRow; i += 4) // += means a + b
        {
            str = ws.Range["B"+i].Value;
         }

..。

 SeriesCollection seriesCollection_mySeries = xlChart.SeriesCollection();
 Series series1 = seriesCollection_mySeries.NewSeries();

 series1.Values = str

;

4

1 に答える 1

0

I think your question should be clarified, but this might help:

for (int i = 25; i <= lastRow; i += 4) // += means a + b
{
    string cellName = "B" + i.ToString();
    string cellValue = (string)ws.Range[cellName].Value;
    str.Add(cellValue);
}
于 2013-02-15T15:24:32.893 に答える