Excel-绑定系列名称

本文关键字:系列 绑定 Excel- | 更新日期: 2023-09-27 18:25:10

我对C#中的excel完全陌生,但我需要从一个范围或单元格值绑定序列名。以下代码对我不起作用。有什么建议吗?

      Excel.Series serie = seriesCollection.NewSeries();
      serie.Name = xlWorkSheet.Range[xlWorkSheet.Cells[1, j], xlWorkSheet.Cells[1, j+1]].Value.ToString();

Excel-绑定系列名称

我已经解决了给出类似字符串的方程的问题,例如;

    serie.Name="=Tabelle1!$A$1" ;

因此,序列名是自动绑定的。对于迭代计算,我使用了这种形式;

            foreach (GraphFile file in files)
            {
                int count = file.Points.Count;
                Excel.Series serie = seriesCollection.NewSeries();

                //Bind serie name from excel sheet
                serie.Name = "=" + sheet_name + "!$" + (char)char_Value + "$1";
                char_Value += 2;
            }