Type Mismatch

ryancgarrett

Board Regular
Joined
Jun 18, 2011
Messages
122
Everytime I run this code I get a "Run-time error '13': Type Mismatch" and I can't figure out why. Can anyone tell me what the error means and how to fix it? Thanks!

Code:
Sub populateComboBox()
   Dim lr As Long
    
    With Sheets("Data Sheet")
        lr = BlankRow("Data Sheet", 2, 4)
        
        frmTransactionEntry.cbxAccount1.RowSource = .Range("D2:D" & lr) 'This is where I get the error
        frmTransactionEntry.cbxAccount2.RowSource = .Range("D2:D" & lr)
        frmTransactionEntry.cbxAccount3.RowSource = .Range("D2:D" & lr)
        frmTransactionEntry.cbxAccount4.RowSource = .Range("D2:D" & lr)
        frmTransactionEntry.cbxAccount5.RowSource = .Range("D2:D" & lr)
        frmTransactionEntry.cbxAccount6.RowSource = .Range("D2:D" & lr)
        
    End With
End Sub

'Function to find the end of a list
Function BlankRow(sName As String, sRow As Integer, sCol As Integer) As Integer
    Do Until Sheets(sName).Cells(sRow, sCol).Value = Empty
        sRow = sRow + 1
    Loop
    
    BlankRow = sRow
End Function
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Probably:

Rich (BB code):
frmTransactionEntry.cbxAccount1.RowSource = .Range("D2:D" & lr).Address(False, False)
 
Upvote 0

Forum statistics

Threads
1,215,353
Messages
6,124,458
Members
449,161
Latest member
NHOJ

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