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.
私が達成したいのは、マクロが実行されるとすぐに、ユーザーは範囲変数に設定される範囲を (範囲を入力するのではなく、シートから手動で) 選択する必要があるということです。
Excel には、グラフのデータ選択設定など、多くの領域でそのような機能がありますが、アクセスする方法がわかりません。どんな助けでも大歓迎です!
以下は、ユーザーに範囲の選択を強制します。
On Error Resume Next Dim rng As Range Do Set rng = Application.InputBox(Prompt:="Select Range", Type:=8) Loop While rng Is Nothing If Not rng Is Nothing Then rng.Select On Error GoTo 0