使用C#在Excel中进行条件格式化

时间:2012-04-20 04:08:56

标签: c# excel vsto

如果值与另一列中的值不同,我需要将颜色应用于单元格的文本。最好的方法是什么?我能想到的方式非常昂贵。

 for (int i = 0; i < ColumnARange.Cells.Count; i++)
                    {
                        if (ColumnARange.Cells[i, 1] != ColumnBRange.Cells[i, 1])
                        {
                            Range currCell = ColumnBRange.Cells[i, 1];
                            currCell.Font.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red);
                        }
                    }

尝试如下条件格式,但徒劳无功。

FormatCondition cond = ColumnBRange.FormatConditions.Add(XlFormatConditionType.xlCellValue, XlFormatConditionOperator.xlNotEqual, ColumnARange);
                cond.Font.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red);

我正在使用VSTO,C#

3 个答案:

答案 0 :(得分:7)

以下代码将条件格式添加到D1到E10的单元格区域

分别比较值D1 = E1或D2 = E2。您可以在FormatCondition对象上设置字体颜色或颜色填充。

FormatCondition format =(FormatCondition)( targetSheet.get_Range("D1:E10",
                Type.Missing).FormatConditions.Add(XlFormatConditionType.xlExpression, XlFormatConditionOperator.xlEqual,
                "=$D1=$E1", Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing));

            format.Font.Bold = true;
            format.Font.Color = 0x000000FF;

答案 1 :(得分:2)

如果他们的值不等于B1:B10的值,请说明你想要为单元格A1:A10着色,即

B1<>A1导致B1变色,B2<>A2导致B2变色等。

然后你可以做以下

Range columnBRange = (Range)oSheet.Range[oSheet.Cells[1,2], oSheet.Cells[10,2]];

Range columnARange = (Range)oSheet.Range[oSheet.Cells[1,1], oSheet.Cells[1,1]];

FormatCondition cond = (FormatCondition) ColumnBRange.FormatConditions.Add(XlFormatConditionType.xlCellValue, XlFormatConditionOperator.xlNotEqual, "="+ColumnARange.Address[false,true]);
cond.Font.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red); //Red letters
cond.Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.LightYellow); //Light yellow cell background

请注意,需要在"="前加ColumnARange.Address[false,true],否则Add方法会将Address用作文字字符串而不是单元格引用。

如果您查看应用于Excel工作表中的B1:B10单元格的条件格式设置规则,它将为该范围内的每个单元格指出Cell Value <> B1,这有点令人困惑IMO但是应用了格式尽管如此。

为了完整性:我在Range.Address属性上使用可选对象,如Range.Address[isRowAbsolute,isColumnAbsolute]

答案 2 :(得分:1)

试试这个

FormatCondition cond = ColumnBRange.FormatConditions.Add(XlFormatConditionType.xlCellValue, XlFormatConditionOperator.xlNotEqual, "=$B1");
                cond.Font.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red);