VBA – セルの背景色を変更する

Written by

Editorial Team

Reviewed by

Steve Rynearson

Translated by

masahiro yoshida

Last updated on 8月 1, 2022

このチュートリアルでは、VBAを使用してセルの背景色を変更する方法を説明します。

Interior.colorIndexでセルの背景色を変更する

VBAでセルの背景色を変更するには、Interior.colorIndexプロパティを使用します。ここでは、セルA1の背景色を変更する方法をいくつか紹介します。

Range()メソッドを使用した例です。

Range("A1").Interior.ColorIndex = 5

Cells()メソッドを使用した例です。

Cells(1, 1).Interior.ColorIndex = 15

どの数字がどの色に相当するかを調べるには、こちらのColorIndexのカラーリファレンスをご覧ください。

VBAのコーディングが簡単に

VBAのコードをネットで探すのはもうやめて、AutoMacroを使ってみましょう。初心者でも最小限のコーディング知識でゼロから手順をコーディングでき、経験者にとっても多くの時間節約機能を備えたVBAコードビルダーです!

alt text もっと詳しく

vba-free-addin

VBA Code Examples Add-in

Easily access all of the code examples found on our site.

Simply navigate to the menu, click, and the code will be inserted directly into your module. .xlam add-in.

(No installation required!)

Free Download

Return to VBA Code Examples