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.
メッセージボックスで「OK」を押した後、特定のワークシートを開こうとしています。したがって、「sheet1」でループを実行すると、msgbox が表示され、「found x records」と表示され、「ok」を押すと「sheet2」が開きます。これは可能ですか?
Sub Sample() 'Your Loop Msgbox "Loop Finished!" & vbcrlf & "Found x records" Sheets("Sheet2").Activate End Sub