この記事では、選択したセルの行と列を強調表示する方法を学習します。

[開発者]タブをクリックします。[コード]グループから、[VisualBasic]を選択します

img1

または、Alt + F11ショートカットキーを押してVBエディターを開きます。

現在のシートに次のコードを入力してください

Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)

静的xRow

静的xColumn

If xColumn <> “” Then

With Columns(xColumn).Interior

.ColorIndex = xlNone

終了

With Rows(xRow).Interior

.ColorIndex = xlNone

終了

終了If

pRow = Selection.Row

pColumn = Selection.Column

xRow = pRow

xColumn = pColumn

===

With Columns(pColumn).Interior

.ColorIndex = 6

.Pattern = xlSolid

終了

===

With Rows(pRow).Interior

.ColorIndex = 6

.Pattern = xlSolid

終了

サブの終了

img2

セルC3を選択すると、行番号3と列Cが強調表示されます。

以下に示すスナップショットを参照してください:

img3

セルを変更すると、それに応じて行と列の番号が強調表示されます。