Macro with merged cells

julievandermeulen

Board Regular
Joined
Jan 25, 2020
Messages
82
Office Version
  1. 365
Platform
  1. Windows
I'm looking to write a macro that will

Search the Last Names in column C starting in row 4 and match it to the Last Names in column I starting in row 4.
Then search the First Names in column D starting in row 4 and match it to the First Names in column J starting in row 4.
Then making sure the Last and First name match take the information from Column O starting in row 4 and putting the information in column G starting in row 4.

The problem I'm having is the names in column C & D are sometimes merged in 2 or 3 rows.
Ex. C4:C6 = Smith
D4:D6 = Joe

I'm not sure how to unmerge the cells and keep it inline with the correct information.
 
The easiest way to combine the two macros is with a Call statement, as in the below...

VBA Code:
Sub ConcatenateAndFill()
Dim i As Long, j As Long

Application.ScreenUpdating = False
For i = 4 To Cells(Rows.Count, "C").End(xlUp).Row
    For j = 4 To Cells(Rows.Count, "I").End(xlUp).Row
        If Cells(i, 3) <> "" Then
            If Cells(i, 3) & Cells(i, 4) = Cells(j, 9) & Cells(j, 10) Then
                Cells(i, 7) = Cells(j, 15)
                Exit For
            Else
                Cells(i, 7) = "Not on File"
            End If
        End If
    Next j
Next i
Call MergeRanges
Application.ScreenUpdating = True
End Sub
 
Upvote 0

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
The easiest way to combine the two macros is with a Call statement, as in the below...

VBA Code:
Sub ConcatenateAndFill()
Dim i As Long, j As Long

Application.ScreenUpdating = False
For i = 4 To Cells(Rows.Count, "C").End(xlUp).Row
    For j = 4 To Cells(Rows.Count, "I").End(xlUp).Row
        If Cells(i, 3) <> "" Then
            If Cells(i, 3) & Cells(i, 4) = Cells(j, 9) & Cells(j, 10) Then
                Cells(i, 7) = Cells(j, 15)
                Exit For
            Else
                Cells(i, 7) = "Not on File"
            End If
        End If
    Next j
Next i
Call MergeRanges
Application.ScreenUpdating = True
End Sub

I'm guessing you tried to copy/paste the second macro into the first, in which case the "Dim i" declaration would prompt an error.

(Sorry, looks like this posted twice.)
 
Upvote 0
Tony

Thanks so much for all your help. That worked. The only problem is sometimes in column S there is no information. Right now it leaves it blank in column G. If it doesn't find a name to match it types 'Not of File' in column G. Is there a way for it to type 'Not on File' in either of those circumstances? If not it's not a big deal. I can take the extra 10 minutes to fill that in. It still beats the 2 hours it was taking me to do everything.

Thanks again
 
Upvote 0
Julie,

Column S? In the sample sheet we've been using Column O (ie, Column 15), so that's what I'll continue to use. You can edit it if needed.

Please delete this line:
VBA Code:
If Cells(i, 3) & Cells(i, 4) = Cells(j, 9) & Cells(j, 10) Then

And replace it with this line:
VBA Code:
If Cells(i, 3) & Cells(i, 4) = Cells(j, 9) & Cells(j, 10) And Cells(j, 15) <> "" Then

Cheers,

Tony
 
Upvote 0
Solution
Julie,

Column S? In the sample sheet we've been using Column O (ie, Column 15), so that's what I'll continue to use. You can edit it if needed.

Please delete this line:
VBA Code:
If Cells(i, 3) & Cells(i, 4) = Cells(j, 9) & Cells(j, 10) Then

And replace it with this line:
VBA Code:
If Cells(i, 3) & Cells(i, 4) = Cells(j, 9) & Cells(j, 10) And Cells(j, 15) <> "" Then

Cheers,

Tony
haha yes you are right. I was looking at the original report I pulled before I did any formatting and asked for help because I got stuck. It is column O.

Thanks so much! That works. Now I just need to try it on an original report and not my practice. :) Then I will mark it as helped & completed.
 
Upvote 0

Forum statistics

Threads
1,223,910
Messages
6,175,318
Members
452,634
Latest member
cpostell

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