行とVBAでのMicrosoft Excel 2010を使用して、選択したセルの列を強調表示する方法
この記事では、選択したセルの行と列を強調表示する方法を学習します。
[開発者]タブをクリックします。[コード]グループから、[VisualBasic]を選択します
または、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
終了
サブの終了
セルC3を選択すると、行番号3と列Cが強調表示されます。
以下に示すスナップショットを参照してください:
セルを変更すると、それに応じて行と列の番号が強調表示されます。