Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
メールアドレスのデータベースを作らなければなりません。
煩わしいのは、すでに入力した内容に目を離さないことです。行全体を強調表示するボタンを配置したいと思います。これどうやってするの?
Google を使用して検索しましたが、本当に役立つものは見つかりませんでした。
自分で強調表示することもできますが、最初に行を選択してから色を選択するのではなく、ワンクリックで強調表示したいのです。
基本的にはこれです:
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Cells.Interior.Pattern = xlNone Rows(Target.Row).Interior.Color = 65535 End Sub