I have the following code that prompts the user to select a range of cells.
I am having difficulty checking if the range is valid (i.e. did they just enter a number into the input box?) or if they pressed cancel. How can I differentiate?
Do While (True)
Dim mInput As Range
mInput = Application.InputBox(Prompt:="Please select the cells.", Type:=8)
If (mInput Is Nothing) Then
Exit Sub
End If
If (mInputRange.Columns.Count <> 1) Then
MsgBox "There must be only one column selected.", vbOKOnly
Else
End If
Loop
Do While (True)is the same asDo While Trueis the same as plain ol'Dowhich is more concise and readable. – Jean-François Corbett Mar 21 '12 at 7:55