Macro to clear content from cells based on content in another sheet

Slimat

New Member
Joined
Mar 27, 2014
Messages
33
Hi Guys

I think I am making this too complicated - but and struggling to find an answer.

I have two sheets -

sheet1 has two columns with text in both.

On sheet2 I have several columns which "may" contain an exact match to the contents of the cells in either column from sheet1. I need a way to clear the contents from any cells on sheet2 that exactly match the contents from the cells on sheet1.

It must be an "exact" lookup as there are cells in sheet2 which contain the contents in sheet1 but with extra information too.

Can anyone help? Thanks in advance
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Hi,

Could you please specify two columns of Sheet1?

Also it will be beneficial if can you provide the "several columns" of Sheet2.
 
Upvote 0
As an example... here is what sheet1 and sheet2 may look like... I need a macro which will delete the highlighted cell from sheet2 as they are present in sheet1
 

Attachments

  • sheet1.jpg
    sheet1.jpg
    11.5 KB · Views: 6
  • sheet2.jpg
    sheet2.jpg
    59.6 KB · Views: 5
Upvote 0
Sheet1:
1698072097831.png


Sheet2:
1698072131615.png

Code:
VBA Code:
Sub test()
  Dim sheet2ColumnA As Variant, sheet2ColumnC As Variant, sheet1Array As Variant
  Dim sheet1Dictionary As Object, i As Long
  
  Set sheet1Dictionary = CreateObject("Scripting.Dictionary")
  
  sheet1Array = Worksheets("Sheet1").UsedRange
  
  For Each elemnt In sheet1Array
    If Not sheet1Dictionary.Exists(elemnt) Then
      sheet1Dictionary.Add elemnt, 1
    End If
  Next
  
  With Worksheets("Sheet2")
  sheet2ColumnA = Intersect(.UsedRange, .Columns("A"))
  sheet2ColumnC = Intersect(.UsedRange, .Columns("C"))
  
  
  For i = 1 To UBound(sheet2ColumnA, 1)
    If sheet1Dictionary.Exists(sheet2ColumnA(i, 1)) Then
      sheet2ColumnA(i, 1) = ""
    End If
  Next
    For i = 1 To UBound(sheet2ColumnC, 1)
    If sheet1Dictionary.Exists(sheet2ColumnC(i, 1)) Then
      sheet2ColumnC(i, 1) = ""
    End If
  Next
  .Range("A1").Resize(UBound(sheet2ColumnA, 1), 1).Value = sheet2ColumnA
  .Range("C1").Resize(UBound(sheet2ColumnC, 1), 1).Value = sheet2ColumnC
  End With
End Sub
Sheet2 Result:
1698072168680.png
 
Upvote 0
For your scenario;
VBA Code:
Sub test()
  Dim sheet2ColumnAE As Variant, sheet1Array As Variant
  Dim sheet1Dictionary As Object, i As Long, j As Long
 
  Set sheet1Dictionary = CreateObject("Scripting.Dictionary")
 
  sheet1Array = Worksheets("Sheet1").UsedRange

  For Each elemnt In sheet1Array
    If Not sheet1Dictionary.Exists(elemnt) Then
      sheet1Dictionary.Add elemnt, 1
    End If
  Next
 
  With Worksheets("Sheet2")
  sheet2ColumnAE = Intersect(.UsedRange, .Range("A:E"))
 
  For i = 1 To UBound(sheet2ColumnAE, 1)
    For j = 1 To UBound(sheet2ColumnAE, 2)
      If sheet1Dictionary.Exists(sheet2ColumnAE(i, j)) Then
        sheet2ColumnAE(i, j) = ""
      End If
    Next
  Next
  .Range("A1").Resize(UBound(sheet2ColumnAE, 1), UBound(sheet2ColumnAE, 2)).Value = sheet2ColumnAE
  End With
End Sub
 
Upvote 0
Thanks @Flashbond

I imported your macro into my sheet and it did work, but it only cleared the duplicate cells in column C in sheet2 - it didnt remove the duplicates from columns B, D or E. Here is what I was left with;
 

Attachments

  • results.jpg
    results.jpg
    52.8 KB · Views: 3
Upvote 0
Thanks @Flashbond that works perfectly in my test sheet - my actual sheet has a varying number of columns to search - depending on what they send. Sometimes up to about 30 - always start in column C and then can go up as high as AF... where do I change the number of columns to search?
 
Upvote 0
Then it will be something like:
VBA Code:
Sub test()
  Dim sheet2Array As Variant, sheet1Array As Variant
  Dim sheet1Dictionary As Object, i As Long, j As Long
  Set sheet1Dictionary = CreateObject("Scripting.Dictionary")
 
  sheet1Array = Worksheets("Sheet1").UsedRange
  For Each elemnt In sheet1Array
    If Not sheet1Dictionary.Exists(elemnt) Then
      sheet1Dictionary.Add elemnt, 1
    End If
  Next
 
  With Worksheets("Sheet2")
  sheet2Array = .UsedRange
  For i = 1 To UBound(sheet2Array, 1)
    For j = 3 To UBound(sheet2Array, 2)
      If sheet1Dictionary.Exists(sheet2Array(i, j)) Then
        sheet2Array(i, j) = ""
      End If
    Next
  Next
  .Range("A1").Resize(UBound(sheet2Array, 1), UBound(sheet2Array, 2)).Value = sheet2Array
  End With
End Sub
Note: This code work only if Sheet2 column A and B has always a value.
 
Upvote 0
Thats seems perfect - thanks for the amazing help @Flashbond - as soon as I have tested it on some live data and confirmed the results I will mark as solved. Any problems I'll let you know.

Many thanks :)
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,096
Latest member
Anshu121

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