type mismatch error

howieebub

New Member
Joined
Oct 10, 2005
Messages
22
hi all!

I have a macro here which is designed to combine and sum lines together in a worksheet if certain lines have similar entries. In my dataset:

Code Date Code2 Desc Ident Amount
A 10/1 A BIG 1 10
B 10/1 B TALL 2 20
A 10/2 A TALL 2 30
B 10/2 B FUNNY 3 40
A 10/1 A BIG 1 50
B 10/2 B FUNNY 3 60

The desired output should be:

Code Date Code2 Desc Ident Amount

A 10/1 A BIG 1 60
B 10/1 B TALL 2 20
A 10/2 A TALL 2 30
B 10/2 B FUNNY 3 100

That is, rows will combine and sum if columns 1, 2, and 5 all match. The code below seems to work on this small dataset, but when I move to a larger dataset, I get a type mismatch error. Here is the code I'm currently using. Any ideas?

Sub test()
Dim dic As Object, w(), y, z
Dim i As Long, ii As Long, n As Long
Set dic = CreateObject("Scripting.Dictionary")
With ActiveSheet
.Range("I1").Delete
.Range("H1").Delete
With .Range("a1").CurrentRegion
a = .Offset(1).Resize(.Rows.Count - 2).Value
End With
For i = LBound(a, 1) To UBound(a, 1)
If (a(i, 5)) = " " Then
n = n + 1: ReDim Preserve w(1 To UBound(a, 2), 1 To n)
For ii = LBound(a, 2) To UBound(a, 2)
w(ii, n) = a(i, ii)
Next
Else
z = a(i, 1) & ":" & a(i, 2) & ":" & a(i, 5)
If Not dic.exists(z) Then
n = n + 1: ReDim Preserve w(1 To UBound(a, 2), 1 To n)
For ii = LBound(a, 2) To UBound(a, 2)
w(ii, n) = a(i, ii)
Next
dic.Add z, n
Else
w(6, dic(z)) = w(6, dic(z)) + a(i, 6)
End If
End If
Next
Set dic = Nothing: Erase a
With .Range("a2")
With .CurrentRegion
.Offset(1).Resize(.Rows.Count + 10).ClearContents
End With
.Resize(UBound(w, 2), UBound(w, 1)) _
= Application.Transpose(w)
End With
With .Range("f65536").End(xlUp).Offset(1)
.Offset(, -1) = "Total"
.FormulaR1C1 = "=sum(r2c:r[-1]c)"
End With
End With
Erase w
End Sub


The VBA debugger opens and the code is paused on the following line:

.Resize(UBound(w, 2), UBound(w, 1)) _
= Application.Transpose(w)

Any suggestions?

Thanks,
Howieebub
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
I'm not very good with type mismatch errors. I can get 1 just thinking about code, so I can't help you there.

BUT

Won't a PIVOT TABLE do the same thing with NO coding?

just a thought

lenze
 
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,846
Members
449,194
Latest member
HellScout

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