1
在VBA中,InputBox(Type:= 8)只能選擇一個範圍。有沒有辦法選擇幾個範圍,如2或3?有沒有辦法選擇幾個範圍與例如VBA中的Application.InputBox?
Dim t as Range
Set t = Application.InputBox("Select destination range:", Type:=8)
喜歡的東西:
Dim t As Ranges
Set t = Application.SomeOtherInputBox()