Run-time error '13': Type mismatch

Mike_CS

New Member
Joined
Jun 21, 2017
Messages
24
Hi All

I'm back begging for help again.

Keep getting run-time error message when i get to the "convert values to a vertical array" part below in Red.

Can anybody see where i'm going wrong please. it should be making a list of request numbers for a combobox in a userform so i can update existing records but having many troubles with my first plan to get a list of request numbers which i can then use to populate other things with a vlook or similar.

Worksheets("datastore") = the tab in my book
Range("datastable[RqNo]") = the table in my tab with RqNo being the table column name

Code:
Option Explicit


Sub populate_reqNo_combo()
    Dim SourceWB As Workbook
    Dim ListItems As Variant
    Dim i As Integer
    
    Application.ScreenUpdating = False
    
    With FrmUpdateRequest.cmbFindReqUR


        .Clear    ' remove existing entries from the combobox


        ' open the source workbook as ReadOnly
        Set SourceWB = Workbooks.Open(myfilepath\myfilename, _
                                      False, True)
                                      
        'no need to use all rows if empty
        ListItems = SourceWB.Worksheets("datastore").Range("datastable[RqNo]").End(xlUp).Value
        
        ' get the values you want
        SourceWB.Close False    ' close the source workbook without saving changes


        Set SourceWB = Nothing
        ListItems = Application.WorksheetFunction.Transpose(ListItems)
        
        ' convert values to a vertical array
[COLOR=#ff0000][B]        For i = 1 To UBound(ListItems)[/B][/COLOR]
            .AddItem ListItems(i)    ' populate the listbox
        Next i


        .ListIndex = -1    ' no items selected, set to 0 to select the first item


    End With
    
    Application.ScreenUpdating = True
    
End Sub
 
Last edited by a moderator:

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hi Mike,

This expression will return the value of the top cell in that field (if there are no blanks).
Code:
SourceWB.Worksheets("datastore").Range("datastable[RqNo]").End(xlUp).Value

That's probably your header, so the type mismatch error happens when Excel tries to evaluate this expression where ListItems="RqNo"
Code:
UBound(ListItems)

If you want to get the entire field, try using the .DataBodyRange property.
 
Upvote 0
Does it work if you use List?
Code:
With FrmUpdateRequest.cmbFindReqUR

    ' open the source workbook as ReadOnly
    Set SourceWB = Workbooks.Open(myfilepath \ myfilename, _
                                  False, True)
    'no need to use all rows if empty
    ListItems = SourceWB.Worksheets("datastore").Range("datastable[RqNo]").Value

    ' get the values you want
    SourceWB.Close False    ' close the source workbook without saving changes

    Set SourceWB = Nothing
    .List = ListItems

    .ListIndex = -1    ' no items selected, set to 0 to select the first item

End With
 
Upvote 0
Does it work if you use List?
Code:
With FrmUpdateRequest.cmbFindReqUR

    ' open the source workbook as ReadOnly
    Set SourceWB = Workbooks.Open(myfilepath \ myfilename, _
                                  False, True)
    'no need to use all rows if empty
    ListItems = SourceWB.Worksheets("datastore").Range("datastable[RqNo]").Value

    ' get the values you want
    SourceWB.Close False    ' close the source workbook without saving changes

    Set SourceWB = Nothing
    .List = ListItems

    .ListIndex = -1    ' no items selected, set to 0 to select the first item

End With

Hi Norie

Yours worked a treat. Thanks very much.

Have probably gone the wrong way on this as I'm new to the deeper bits of VBA but will be combining this with a much larger code to update the record selected using the FrmUpdateRequest.cmbFindReqUR combobox displaying a few key columns to update records in my table.

Thanks again.

No doubt will be back on here in a few days looking for the answer to updating a record in an external table ha.

Much love

Mike
 
Upvote 0
Hi Mike,

This expression will return the value of the top cell in that field (if there are no blanks).
Code:
SourceWB.Worksheets("datastore").Range("datastable[RqNo]").End(xlUp).Value

That's probably your header, so the type mismatch error happens when Excel tries to evaluate this expression where ListItems="RqNo"
Code:
UBound(ListItems)

If you want to get the entire field, try using the .DataBodyRange property.

Hi Jerry

Unfortunately I received an runtime error 19 I think it was.

But the .DataBodyRange is something I've never seen before so I'm 'made up' (you may say delighted) that I know another piece of handy code.

You may see me again in a few days as this combobox will be populated with a request number list which I hope I can use to call up the corresponding record to update from my external table. An I haven't got a clue where to start.

Google be good today ha

Thanks again Jerry
 
Upvote 0

Forum statistics

Threads
1,214,870
Messages
6,122,019
Members
449,060
Latest member
LinusJE

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