在Excel 2007中以编程方式添加条件格式
本文关键字:方式 添加 条件 格式 编程 Excel 2007 | 更新日期: 2023-09-27 18:02:20
我想以编程方式使用excel 2007的条件格式功能。我有以下场景:
我有6列数字
A B C D E F
100 25 25 15 20 50
....
if (C1/A1)*100 >= B1
我必须把它涂成红色。同样的规则也适用于D1, E1,F1列。
我在excel 2007中看到了条件格式功能。但是我想要一些关于如何在c#代码中实现它的指针。
我将假设您乐于使用Interop,因为您没有说不这样做。下面是我在Excel中设置条件格式的方法。它假设您已经在一个名为xlWorksheet
的变量中引用了Worksheet
。
// Create a FormatCondition and add it to the specified range of cells, using the
// passed-in condition and cell colour
Excel.Range range = xlWorksheet.get_Range("C1", "C1");
Excel.FormatConditions fcs = range.FormatConditions;
Excel.FormatCondition fc = (Excel.FormatCondition)fcs.Add
(Excel.XlFormatConditionType.xlExpression, Type.Missing, "=IF($C$1/$A$1)*100 >= $B$1");
Excel.Interior interior = fc.Interior;
interior.Color = ColorTranslator.ToOle(Color.Red);
interior = null;
fc = null;
fcs = null;
range = null;
我已经猜到了你的预期用法,但你可以摆弄它来获得正确的公式和单元格引用。