Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
1  
FYI Do While (True) is the same as Do While True is the same as plain ol' Do which is more concise and readable. – Jean-François Corbett Mar 21 '12 at 7:55

2 Answers

up vote 3 down vote accepted

Excel raises an error before the result is returned if it cannot be converted into a range. Try doing it yourself.

Also, I presume you're already doing this but you'll need to use

set mInput = Application.InputBox(Prompt:="Please select the cells.", Type:=8)

instead of

mInput = Application.InputBox(Prompt:="Please select the cells.", Type:=8)

If you press cancel an error is raised also, meaning you need to use some sort of error checking routine:

Sub test()

    On Error GoTo handler

    Dim rng As Range

    Set rng = Application.InputBox("a", Type:=8)

    Debug.Print rng.Address

    Exit Sub

handler:
    Select Case Err.Number
        Case 424
            MsgBox "Cancelled.", vbOKOnly + vbInformation, "Cancellation dialog"
        Case Else
            Err.Raise Err.Number, Err.Source, Err.Description, Err.HelpFile, Err.HelpContext
    End Select

End Sub
share|improve this answer
Thank you very much - works a treat. :) – R4D4 Mar 21 '12 at 0:10
Glad to help :) – mkingston Mar 21 '12 at 0:25
+1 for a good working solution – brettdj Mar 21 '12 at 2:10
... dang, had not actually pressed +1. have done so now – brettdj Mar 21 '12 at 3:17
+1 for suggesting Set which is the right way to do it :) – Siddharth Rout Mar 21 '12 at 8:54

While mkingston's code does work (and I upvoted) I think it is preferable to test for Nothing then revert to an error handler. The code can then flow on to an action, or take another path, rather then need to resume post error handling (which I reserve for issues that can't be anticipated)

Sub test()
Dim rng As Range
On Error Resume Next
Set rng = Application.InputBox("Please select the cells", Type:=8)
On Error GoTo 0
If Not rng Is Nothing Then
    If rng.Columns.Count <> 1 Then
        MsgBox "There must be only one column selected.", vbOKOnly
    Else
        'do stuff
    End If
Else
    MsgBox "User either cancelled range selected or selected an invalid range", vbCritical
End If
End Sub
share|improve this answer
I agree entirely. My code was more for the op to grasp the concept. This answer is likely helpful for someone not familiar with excel error checking (quite possibly the op :)). – mkingston Mar 21 '12 at 2:32
@mkingston: Actually, someone really familiar with error handling would not use error handling in this case. Nothing is an expected output, easily tested for using Is Nothing, so why treat it as an "error"? – Jean-François Corbett Mar 21 '12 at 7:54
Good one as usual :) – Siddharth Rout Mar 21 '12 at 8:55
@Jean-FrançoisCorbett fair point, though I would suggest that might be variable in implementation. I agree though that on this scale Brett's code is a better example. – mkingston Mar 22 '12 at 23:02
On second thought, I agree in the more general case. – mkingston Mar 22 '12 at 23:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.