I want the user to select a Range via Application.InputBox with Type:=8.
I give it a default range, but in some cases it shows an unexpected behaviour and pre-selects a different wrong default range.
My example code:
Dim myDefaultRange as Range
Dim myInputRange as Range
Set myDefaultRange = ActiveSheet.Range("C8")
Set myInputRange = Application.InputBox( _
Title:="Exampe Title", _
Prompt:="Example Prompt", _
Default:=myDefaultRange.Address(0, 0), _
Type:=8)
I expected my example to select cell C8 and ask like this:
Instead column H is preselected and the user is asked for a new range for $H:$H like this:

