我正在尝试在 C# 中创建一个函数类以用于 excel 自动化加载项。使用下面的简单代码,我想在与用户选择的颜色相匹配的范围内添加值(例如,sum Range("A1:A10") 其中单元格颜色与“B1”相同) :颜色总和(A1:A10,B1)。
public double ColourSum(Range RangeToSum, Range cellContainingColourToSum)
{
double currentTotal = 0;
//return 0; this code is edited from my original posting, due to posting error
for (int i = 0; i < RangeToSum.Cells.Count;i++) //error at 'int i'
{
double iColour = RangeToSum.Interior.ColorIndex(i);
if (iColour == cellContainingColourToSum.Interior.ColorIndex)
{
currentTotal = currentTotal + RangeToSum.Value2(i);
//return currentTotal;
}
}
return currentTotal;
}
不幸的是,上面的代码在第 4 行返回“检测到无法访问的代码”。我给出的代码示例是我实际想要做的简化示例,但很好地说明了我的观点。我的代码有问题,还是我可以用更好的方式编写来避免这个问题?
谢谢,里科。
为了结束这个问题,以下代码完全有效(更改 for(int i...with foreach (Range r...):
public double ColourSum(Range RangeToSum, Range cellContainingColourToSum)
{
double currentTotal = 0;
foreach (Range r in RangeToSum)
{
double iColour = r.Interior.ColorIndex;
if (iColour == cellContainingColourToSum.Interior.ColorIndex)
{
currentTotal = currentTotal + r.Value2;
}
}
return currentTotal;
}