根据列值使用closeXML设置行颜色

时间:2019-03-08 08:54:24

标签: closedxml

我正在尝试使用VB.NET从数据表写入Excel文件。我也能够实现一些excel操作。现在,我想根据特定列的单元格值对行上色(例如,Col-4)。这是我的Excel文件-

Here is my Excel file

I want to achieve like this -

寻求一些指导来实现这一目标。

1 个答案:

答案 0 :(得分:1)

我建议您添加条件格式。例如:

var workbook = new XLWorkbook();
var ws = workbook.AddWorksheet("Sheet1");

ws.FirstCell().SetValue(1)
  .CellBelow().SetValue(1)
  .CellBelow().SetValue(2)
  .CellBelow().SetValue(3)
  .CellBelow().SetValue(4);

ws.RangeUsed().AddConditionalFormat().WhenBetween(2, 3)
  .Fill.SetBackgroundColor(XLColor.Red);

参考:https://github.com/ClosedXML/ClosedXML/wiki/Conditional-Formatting