ReDim Runtime Error 13- Mismatch

bujubenji

New Member
Joined
Feb 26, 2023
Messages
12
Office Version
  1. 365
Platform
  1. Windows
Hi all,

I've pieced together the below code from other forums to achieve something I thought would be relatively simple, but it has thrown up an error which I'm not capable of solving.

I have two ranges B44:E58 and H44:K58- products are listed starting at B44 with various details in the three columns to the right. When sent to quality assurance, I hit a button which copies the data into the range starting at H44. If I hit the button again (in the event of it being clicked accidentally, it removes said data from the range starting at H44 and originally deleted the consequently blank row and shifted up. I have a third range (M44:M58) which identifies outstanding products i.e. products which have not been sent to quality assurance.

The button which deleted blank rows meant that I couldn't use a filter function in M44 (FILTER(B44:B58,NOT(COUNTIF(H44:H58,B44:B58))) as the formula was being compromised due to deleted rows in the H range.

I resorted to the below code to get around this. I have since change the delete blank rows line of the code to sort meaning that I can now use the filter formula, however, it is bugging me that I couldn't get the below code to work.


Oddly, it works perfectly if there is more than 1 product in the B44:E58 range, but runs into a Runtime Error 13- Type Mismatch if there is only one row of data. Any ideas?


Dim rng As Range
Set rng = Range("M44:R58")
rng.ClearContents

Dim v1, v2, v3(), i As Long, j As Long

v1 = Range("B44", Range("B" & Rows.Count).End(xlUp)).Value
v2 = Range("H43", Range("H" & Rows.Count).End(xlUp)).Value

' THIS LINE IS THROWING UP THE ERROR RUNTIME ERROR 13- TYPE MISMATCH
ReDim v3(1 To UBound(v1, 1))

For i = LBound(v1) To UBound(v1)
If IsError(Application.Match(v1(i, 1), v2, 0)) Then
j = j + 1
v3(j) = v1(i, 1)
End If
Next i


On Error Resume Next
Range("M44").Resize(j) = Application.Transpose(v3)


thanks in advance
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
You're right, the error is when you only have one record.

One option is always to add an extra row, but when reading the rows it will be for the total rows - 1:

Rich (BB code):
Sub test()
  Dim v1, v2, v3(), i As Long, j As Long
 
  v1 = Range("B44", Range("B" & Rows.Count).End(xlUp)(2)).Value
  v2 = Range("H43", Range("H" & Rows.Count).End(xlUp)).Value
 
  ' THIS LINE IS THROWING UP THE ERROR RUNTIME ERROR 13- TYPE MISMATCH
  ReDim v3(1 To UBound(v1, 1) - 1)
 
  For i = LBound(v1) To UBound(v1) - 1
    If IsError(Application.Match(v1(i, 1), v2, 0)) Then
      j = j + 1
      v3(j) = v1(i, 1)
    End If
  Next i
  On Error Resume Next
  Range("M44").Resize(j) = Application.Transpose(v3)
End Sub
 
Upvote 0
Solution
You're right, the error is when you only have one record.

One option is always to add an extra row, but when reading the rows it will be for the total rows - 1:

Rich (BB code):
Sub test()
  Dim v1, v2, v3(), i As Long, j As Long
 
  v1 = Range("B44", Range("B" & Rows.Count).End(xlUp)(2)).Value
  v2 = Range("H43", Range("H" & Rows.Count).End(xlUp)).Value
 
  ' THIS LINE IS THROWING UP THE ERROR RUNTIME ERROR 13- TYPE MISMATCH
  ReDim v3(1 To UBound(v1, 1) - 1)
 
  For i = LBound(v1) To UBound(v1) - 1
    If IsError(Application.Match(v1(i, 1), v2, 0)) Then
      j = j + 1
      v3(j) = v1(i, 1)
    End If
  Next i
  On Error Resume Next
  Range("M44").Resize(j) = Application.Transpose(v3)
End Sub

Wizardry! Thanks so much Dante, works like a dream.
 
Upvote 0

Forum statistics

Threads
1,215,095
Messages
6,123,072
Members
449,093
Latest member
ripvw

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