asyamonique
Well-known Member
- Joined
- Jan 29, 2008
- Messages
- 1,286
- Office Version
- 2013
- Platform
- Windows
Code:
Dim LR As Long, i As Long
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = 1 To LR
With Range("A" & i)
If .Value = ComboBox1.Value Then
.Offset(, 1).Resize(, 26).Copy
Range("AE" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteValues
End If
End With
Next i
Range("AE" & Rows.Count).End(xlUp).Offset(2).Value = " "
Good Day,
Captioned code filtering the combobox values all the way down, and works fine, how can i get the sub totals(sum values for entire rows) after that code
Code:
Range("AE" & Rows.Count).End(xlUp).Offset(2).Value = " "
Many Thanks