【VB.NET】ClosedXML:条件付き書式

[include-page id=”11760″]

セルの値が 2 以上 3 以下ならセルの背景色を赤にする

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)

3 色スケールの適用

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

ws.RangeUsed.AddConditionalFormat.ColorScale _
  .LowestValue(XLColor.Red) _
  .Midpoint(XLCFContentType.Percent, 50, XLColor.Yellow) _
  .HighestValue(XLColor.Green)

アイコンセットの適用

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

ws.RangeUsed.AddConditionalFormat.IconSet(XLIconSetStyle.ThreeTrafficLights2) _
  .AddValue(XLCFIconSetOperator.EqualOrGreaterThan, 0, XLCFContentType.Number) _
  .AddValue(XLCFIconSetOperator.EqualOrGreaterThan, 2, XLCFContentType.Number) _
  .AddValue(XLCFIconSetOperator.EqualOrGreaterThan, 3, XLCFContentType.Number)

データバーの適用

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

ws.RangeUsed.AddConditionalFormat.DataBar(XLColor.Red) _
  .LowestValue _
  .HighestValue

式の使用

セルの値を比較対象にすることもできます。

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

Dim oUsedRange = ws.RangeUsed

ws.Cell("C1").Value = 3

oUsedRange.AddConditionalFormat.WhenEqualOrGreaterThan("=$C$1") _
  .Fill.SetBackgroundColor(XLColor.Yellow)

 

「【VB.NET】ClosedXML の使い方」の一覧を表示

購読する
通知を受け取る対象
guest
0 Comments
Newest
Oldest
Inline Feedbacks
View all comments