excel vba - Is there a way to select several ranges with e.g. Application.InputBox in VBA? -
in vba, inputbox(type:=8) can select 1 range only. there way select several ranges, 2 or 3 ?
dim t range set t = application.inputbox("select destination range:", type:=8)
something like:
dim t ranges set t = application.someotherinputbox()
when start wish inputbox
(or msgbox
) supported feature x, it's time create own dialog instead. create own user form features need , show instead.
in case haven't done before, here's article sample code: custom vba message box
Comments
Post a Comment