我正在尝试使用VB.NET从数据表写入Excel文件。我也能够实现一些excel操作。现在,我想根据特定列的单元格值对行上色(例如,Col-4)。这是我的Excel文件-
寻求一些指导来实现这一目标。
答案 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