Error when Inputbox is Canceled

xxthegiantxx

New Member
Joined
Jan 5, 2017
Messages
24
I have an input box set up to prompt the user to select a range of cells. When i select cancel and no data range was selected, i get a run-time error '13: type mismatch. Clicking on debug it refers me to my set calculated_range line of code. Not sure what i am doing wrong. The code works perfectly when a range is selected.
Also, if you have link to a video or website that you would recommend for learning vba i would appreciate it.

Here's my code:
Code:
 Sub Button3_Click()

Dim Calculated_Range
Set Calculated_Range = Application.InputBox("Calculate Weekly Hours", "Select a Range from Column 'F'", "Enter Range", , , , , 8)


If Calculated_Range = "" Then
MsgBox "No Range Selected"
GoTo ending
Else
MsgBox "Range Selected: " & Calculated_Range.Address
End If




Range("R3").Formula = "=Sum(" & Calculated_Range.Address & ")"






ending:


End Sub
 
Last edited by a moderator:

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
When you cancel an Application.InputBox it returns False. Which is not a Range object, hense the mismatch

Try

Code:
On Error Resume Next
Set Calculated_Range = Application.InputBox("Calculate Weekly Hours", "Select a Range from Column 'F'", "Enter Range", , , , , 8)
On Error Goto 0

If Calculated_Range Is Nothing Then
    MsgBox "No Range Selected"
    GoTo ending
Else
    MsgBox "Range Selected: " & Calculated_Range.Address
End If
 
Upvote 0
When you cancel an Application.InputBox it returns False. Which is not a Range object, hense the mismatch

Try

Code:
On Error Resume Next
Set Calculated_Range = Application.InputBox("Calculate Weekly Hours", "Select a Range from Column 'F'", "Enter Range", , , , , 8)
On Error Goto 0

If Calculated_Range Is Nothing Then
    MsgBox "No Range Selected"
    GoTo ending
Else
    MsgBox "Range Selected: " & Calculated_Range.Address
End If

This results in an object error on If Calculated_Range Is Nothing Then. However, i changed "Is Nothing" to = "" and it worked. Thanks for your help.
 
Upvote 0
so changing the is nothing then part of the code to = "" then allows the message box to work for a cancel selection on the input box but then gives a type mismatch error for the range calculation. Switching it back to is nothing then, allows the range calculation to work but again gives me an error when cancel is selected. Something is still missing.
 
Upvote 0
You should have this declaration in your code:

Code:
Dim Calculated_Range As Range
 
Upvote 0
You should have this declaration in your code:

Code:
Dim Calculated_Range As Range

Thanks Rory this helped alot. In addition i moved the code that puts the selected range into R3 to before the end of the if statement. All works good now. Thanks all for your help on this. Here's the code in case someone else runs into a similar problem:

Sub Button3_Click()


Dim Calculated_Range As Range
On Error Resume Next
Set Calculated_Range = Application.InputBox("Calculate Weekly Hours", "Select a Range from Column 'F'", "Enter Range", , , , , 8)
On Error GoTo 0


If Calculated_Range Is Nothing Then
MsgBox "No Range Selected"
Else
MsgBox "Range Selected: " & Calculated_Range.Address
Range("R3").Formula = "=Sum(" & Calculated_Range.Address & ")"
End If






End Sub
 
Upvote 0

Forum statistics

Threads
1,217,268
Messages
6,135,566
Members
449,948
Latest member
AmyB2212

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top