stop error with VBA combobox

neilp

Well-known Member
Joined
Jul 5, 2004
Messages
529
Office Version
  1. 365
Platform
  1. Windows
Hi All and thanks in advance for your help and wisdom

I am currently using the following code to change a label on a userform

Code:
Private Sub Combobox2_Change()
   
   Dim rw As Long
   
   rw = Me.ComboBox2.ListIndex + 1
   Me.Label23.Caption = Sheets("Data").Range("D" & rw).Value
   
End Sub

It works great up to a point. When someone selects something in the dropdown, but then changes their mind and hits the backspace, it brings up a runtime error. Is there a bit of code I could add that would stop the code searching for a null value?

Thanks

Neil
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
How about
Code:
Private Sub Combobox2_Change()
   
   Dim rw As Long
   if Me.ComboBox2="" Then Exit Sub
   rw = Me.ComboBox2.ListIndex + 1
   Me.Label23.Caption = Sheets("Data").Range("D" & rw).Value
   
End Sub
 
Upvote 0
Fluff, you are a gem

Cheers

Neil
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,104
Messages
6,128,856
Members
449,472
Latest member
ebc9

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