- ベストアンサー
Excel セルの書式について
- みんなの回答 (3)
- 専門家の回答
質問者が選んだベストアンサー
その他の回答 (2)
- imogasi
- ベストアンサー率27% (4737/17070)
回答No.3
VBAですが、参考に。 標準モジュールに Sub test30() Dim f As Object ActiveSheet.Range("A5:G5").FormatConditions.Delete '現状の条件を消去 Set f = ActiveSheet.Range("A5:G5").FormatConditions.Add(Type:=xlCellValue, Operator:=xlGreater, Formula1:=Range("a1").Value) '設定 'f.Interior.Color = RGB(200, 250, 180) '塗りつぶしの色の場合 f.Interior.Pattern = xlChecker '網掛け End Sub ーーーー 任意のセル Range("a1").Value より大きい値の場合 Operator:=xlGreater 網掛けのパターン f.Interior.Pattern 網掛け色 f.Interior.Color ーーー なぜVBA? 操作で覚えるより、すっきりすると思うが。 特に英米人ならば。日常語を並べるような、感じで書けるから。 小生は、エクセル2003以前も経験しているので、最近のバージョンの操作は大幅に変わっているから、覚えにくい。 ーー 解説記事 条件付き書式 https://www.tipsfound.com/vba/07020 網掛けの設定 https://www.officepro.jp/excelvba/cell_interior/index2.html
- watabe007
- ベストアンサー率62% (476/760)
回答No.1