My code is wrong?

Tarqs

Board Regular
Joined
Feb 14, 2011
Messages
120
I have this code but it only pastes against the first matching row and not all matching rows, my code assumes the item i am trying to match is unique!

Any help much appreciated

Code:
Option Explicit
Sub ReportMatcher()
    Dim wsDest As Worksheet
    Dim wsSource As Worksheet
    Dim rngDest As Range
    Dim rngSource As Range
    Dim rng As Range
    Dim rowMatch As Variant
 
    Set wsDest = ActiveSheet
 
    If Not Application.Dialogs(xlDialogActivate).Show Then
        Exit Sub
    End If
 
    Application.ScreenUpdating = False
 
    Set wsSource = ActiveSheet
 
    With wsDest
        Set rngDest = .Range("D:D")
    End With
 
    With wsSource
        Set rngSource = .Range("A2", .Cells(.Rows.Count, 1).End(xlUp))
    End With
 
    For Each rng In rngSource.Cells
        If Len(rng.Value) > 0 Then
            rowMatch = Application.Match(rng.Value, rngDest, 0)
 
            If IsNumeric(rowMatch) Then
 
                wsDest.Range("T" & rowMatch).Value = wsSource.Range("B" & rng.Row).Value
                wsDest.Range("U" & rowMatch).Value = wsSource.Range("D" & rng.Row).Value
            End If
        End If
    Next rng
    Application.ScreenUpdating = True
 
    MsgBox "Order Numbers Added", vbInformation
End Sub
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)

Forum statistics

Threads
1,224,559
Messages
6,179,515
Members
452,921
Latest member
BBQKING

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