我想以编程方式使用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#代码中实现它。
答案 0 :(得分:8)
我会假设您很乐意使用Interop,因为您没有另外说过。这是我用来在Excel中设置条件格式的方法。它假设您已在名为Worksheet
的变量中引用xlWorksheet
。
// 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;
我已经猜到了你的用途,但你可以摆弄它以使公式和单元格引用正确。