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.
テキストを入力した後、セルの値を取得したい。基本的に、セルを強調表示し、テキストを入力してReturnキーを押すと、コードが起動し、入力した値を変数に割り当てます。
簡単だと思いましたが、困りました!
ワークシート レベルのイベント ハンドラーを使用できます
Dim v As Variant Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target.Cells(1), Me.Range("A1")) Is Nothing Then v = Target.Cells(1).Value End If End Sub
コードはワークシート モジュールに入ります。