I have the following piece of code:
dim selectRange as Range
Set selectRange = Application.InputBox("Select your range", "Hello", , , , , , 8)
When a user chooses Cancel the InputBox prompt, it returns error of Object not set
.
I have tried to use a Variant variable type but I can't handle it. In case of cancelling, it returns False
, meanwhile in case of selecting a range, it returns Range of InputBox.
How can I avoid this error?
See Question&Answers more detail:os