VBA: Add item to sheet if not currently in it

fadetograham

New Member
Joined
Jul 6, 2015
Messages
39
Hi everyone

I have a workbook with approx. 20 sheets, 10 with the same list of people and then a master list which each of those 10 sheets is looking up for further info.

I've written some code but am missing the final piece of the jigsaw, I want to loop through each sheet where there is the person list, check the list in that sheet and make sure it has all of the people listed in the master list.

The code I've written works but if the master list is sorted differently to the individual sheets then it adds them.

Code is below and any help is greatly appreciated.

Code:
Sub Add_New_Driver()
Dim ws As Worksheet
Dim wsml As Worksheet
Dim lr As Long
Dim mllr As Long
Dim a As Long
Dim b As Long
Set wsml = ThisWorkbook.Worksheets("Master List")
wsml.Activate
mllr = Cells(Rows.Count, 1).End(xlUp).Row
For Each ws In ThisWorkbook.Worksheets
    
    If (ws.Name = "AR PDP ADR") Or (ws.Name = "Smiths System") Or (ws.Name = "HGV Licence Expiry") Or (ws.Name = "TBTs") Or (ws.Name = "D&A Test") _
    Or (ws.Name = "UWSO Pre Start") Or (ws.Name = "UWSO Load") Or (ws.Name = "UWSO Discharge") Or (ws.Name = "UWSO Drive") Or (ws.Name = "Bi Annual Medical") Then
    
    ws.Activate
    lr = Cells(Rows.Count, 1).End(xlUp).Row
    
        For a = 2 To mllr
            b = 2
            For b = 2 To lr
                If wsml.Cells(a, 1) = ws.Cells(b, 1) Then
                Exit For
                ElseIf wsml.Cells(a, 1) <> ws.Cells(b, 1) Then
                lr = lr + 1
                ws.Cells(lr, 1) = wsml.Cells(a, 1)
                End If
            Next
        Next
    End If
Next
    
End Sub
 
Last edited by a moderator:

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
I'd probably be inclined to change this to use something more efficient than a brute force search (e.g. Application.Match) but in the spirit of your original code, I think this might do what you're after:

Code:
Sub Add_New_Driver()
Dim ws As Worksheet
Dim wsml As Worksheet
Dim lr As Long
Dim mllr As Long
Dim a As Long
Dim b As Long
Dim f As Boolean
Set wsml = ThisWorkbook.Worksheets("Master List")
wsml.Activate
mllr = Cells(Rows.Count, 1).End(xlUp).Row
For Each ws In ThisWorkbook.Worksheets
    
    If (ws.Name = "AR PDP ADR") Or (ws.Name = "Smiths System") Or (ws.Name = "HGV Licence Expiry") Or (ws.Name = "TBTs") Or (ws.Name = "D&A Test") _
    Or (ws.Name = "UWSO Pre Start") Or (ws.Name = "UWSO Load") Or (ws.Name = "UWSO Discharge") Or (ws.Name = "UWSO Drive") Or (ws.Name = "Bi Annual Medical") Then
    
    ws.Activate
    lr = Cells(Rows.Count, 1).End(xlUp).Row
    
        For a = 2 To mllr
            f = False
            For b = 2 To lr
                If wsml.Cells(a, 1) = ws.Cells(b, 1) Then
                    f = True
                    Exit For
                End If
            Next
            If Not f Then
                lr = lr + 1
                ws.Cells(lr, 1) = wsml.Cells(a, 1)
            End If
        Next
    End If
Next
    
End Sub

WBD
 
Upvote 0
You could use countif to see if the name is on the sheet.

Code:
    lr = ws.Cells(Rows.Count, 1).End(xlUp).Row
    For x = 2 To lr
        a = Application.CountIf(Sheets("Sheet1").Range("A2:A" & lr1), ws.Cells(x, 1))
        If a = 0 Then
            Sheets("Sheet1").Cells(lr1 + 1, 1) = ws.Cells(x, 1)
            lr1 = Sheets("Sheet1").Cells(Rows.Count, 1).End(xlUp).Row
        End If
    Next x
 
Upvote 0
How about
Code:
Sub Add_New_Driver()

   Dim Sht As Variant
   Dim WsMl As Worksheet
   Dim ShtAry As Variant
   Dim Nms As Variant
   Dim Nm As Variant
   Dim Tst As Variant
   
   ShtAry = Array("AR PDP ADR", "Smiths System", "HGV Licence Expiry", "TBTs", "D&A Test", "UWSO Pre Start", "UWSO Load", "UWSO Discharge", "UWSO Drive", "Bi Annual Medical")
   Set WsMl = ThisWorkbook.Worksheets("Master List")
   Nms = WsMl.Range("A2", WsMl.Range("A" & Rows.Count).End(xlUp)).Value
   
   For Each Sht In ShtAry
      With Sheets(Sht)
         For Each Nm In Nms
            Tst = Application.Match(Nm, .Range("A2", .Range("A" & Rows.Count).End(xlUp)), 0)
            If IsError(Tst) Then .Range("A" & Rows.Count).End(xlUp).Offset(1).Value = Nm
         Next Nm
      End With
   Next
   
End Sub

EDITED
As pointed out by WBD I forgot to change one of the sheet names. That's been corrected.
 
Last edited:
Upvote 0
Hi guys

Thank you so much for all your replies.

I went with WBD's version as it is was the smallest change against what I'd already written but it's good to know there are a few different ways of doing it. Will definitely look into application.match, not come across that before.

That's again :)

Graham
 
Upvote 0
Match is an excel function, that is why you use application.match instead of just match in VBA. It returns the row number of where the match if found.
 
Upvote 0
Although Application.Match is not documented whereas WorksheetFunctions.Match is documented. The former, however, is more graceful when no match is found, allowing you to use IsError() around the result.

WBD
 
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,842
Members
449,471
Latest member
lachbee

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