Complex VBA to loop through each worksheet and extract text

thedeadzeds

Active Member
Joined
Aug 16, 2011
Messages
442
Office Version
  1. 365
Platform
  1. Windows
Hi Guys,

I'm guessing this is not possible but I am trying to do the following:

I have a Worksheet called "Master" with the following column headings and I want to populate each row with data from the individual worksheets :
NameRefCodeNI Code

Is there a way to loop through all worksheets in excluding Master, extract certain text and list it in the relevant columns in the 'master' sheet.

NI Code - Search the sheet for any cell containing 'NI -A' or 'NI-B' or 'NI C' and store in the NI code column. There will only be one of these per sheet so not all 3 codes.
Name - Search the sheet for any cell containing Employee Name and store the data from the cell to the right of this in the Name Column (for example Employee Name is in cell A4 so the Name will be in B4)
Ref - Search the sheet for any cell containing Ref and store the data from the cell to the right of this in the Ref Column.
Code- Search the sheet for any cell containing Code and store the data from the cell to the right of this in the Ref Column.

Hope this makes sense
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Assuming 1 sheet = row of data. Not tested. No extra checks.
Try this:
VBA Code:
Option Explicit
Option Base 0

Sub loopSheets()
    Dim mSh As Worksheet
    Set mSh = ThisWorkbook.Worksheets("Master")
    Dim saveRng As Range
    Set saveRng = mSh.Range("A2").Resize(1, 4)
    
    Dim results(0 To 3) As Variant
    Dim wsh As Worksheet
    Dim found As Range
    Dim lookFor As Variant, xLook As Variant
    Dim colOffset As Variant
    Dim i As Long, j As Long
    lookFor = Array("Employee Name", "Ref", "Code", Array("NI-A", "NI-B", "NI-C"))
    colOffset = Array(1, 1, 1, 0)
    
    For Each wsh In Worksheets
        If wsh Is mSh Then GoTo skipwsh
        Erase results
        For i = LBound(lookFor) To UBound(lookFor)
            If Not IsArray(lookFor(i)) Then
                xLook = Array(lookFor(i))
            Else
                xLook = lookFor(i)
            End If
            Set found = Nothing
            For j = LBound(xLook) To UBound(xLook)
                Set found = findValue(wsh, xLook(j), colOffset(i))
                If Not found Is Nothing Then
                    results(i) = found.Value
                    Exit For
                End If
            Next j
        Next i
        saveRng = results
        Set saveRng = saveRng.Offset(1)
skipwsh:
    Next wsh
    
    Set wsh = Nothing
    Set mSh = Nothing
    Set saveRng = Nothing
    Erase results
    Set found = Nothing
    lookFor = Null
    xLook = Null
    colOffset = Null
    
End Sub

Private Function findValue(ByRef sh As Worksheet, ByRef lookForValue As Variant, ByVal offsetColumns As Long) As Range
    Dim ur As Range
    Dim foundRange As Range
    Dim returnValue As Variant
    
    Set ur = sh.UsedRange
    Set foundRange = ur.Find(lookForValue, , xlValues, xlWhole)
    If Not foundRange Is Nothing Then _
        Set findValue = foundRange.Offset(0, offsetColumns)
End Function
 
Upvote 0
Thanks, its nearly there but the 'master' worksheet looks like this? There are gaps between the data and one of the NI Codes randomly appeared in cell D2.

Employee NameRefCodeNI Code
NI - A
Name 12FGTYHNI - C
Name 23GFDSFNI - A
Name 320HYGTFNI - A
 
Upvote 0
Well, it probably needs some fine-tuning, but I did it "on the fly" and with no sample data or file.
There are gaps between the data
This means that there are sheets where no relevant cells are found.
and one of the NI Codes randomly appeared in cell D2
on a sheet only the NI code cell is found, none of the others

Each line on the master sheet is a worksheet in the workbook.
Normally I would include the worksheet name in the output, like this:
VBA Code:
Option Explicit
Option Base 0

Sub loopSheets()
    Dim mSh As Worksheet
    Set mSh = ThisWorkbook.Worksheets("Master")
    Dim saveRng As Range
    Set saveRng = mSh.Range("A2").Resize(1, 5)
   
    Dim results(0 To 4) As Variant
    Dim wsh As Worksheet
    Dim found As Range
    Dim lookFor As Variant, xLook As Variant
    Dim colOffset As Variant
    Dim i As Long, j As Long
    lookFor = Array("Employee Name", "Ref", "Code", Array("NI-A", "NI-B", "NI-C"))
    colOffset = Array(1, 1, 1, 0)
   
    For Each wsh In Worksheets
        If wsh Is mSh Then GoTo skipwsh
        Erase results
        results(4) = wsh.Name
        For i = LBound(lookFor) To UBound(lookFor)
            If Not IsArray(lookFor(i)) Then
                xLook = Array(lookFor(i))
            Else
                xLook = lookFor(i)
            End If
            Set found = Nothing
            For j = LBound(xLook) To UBound(xLook)
                Set found = findValue(wsh, xLook(j), colOffset(i))
                If Not found Is Nothing Then
                    results(i) = found.Value
                    Exit For
                End If
            Next j
        Next i
        saveRng = results
        Set saveRng = saveRng.Offset(1)
skipwsh:
    Next wsh
   
    Set wsh = Nothing
    Set mSh = Nothing
    Set saveRng = Nothing
    Erase results
    Set found = Nothing
    lookFor = Null
    xLook = Null
    colOffset = Null
   
End Sub

Private Function findValue(ByRef sh As Worksheet, ByRef lookForValue As Variant, ByVal offsetColumns As Long) As Range
    Dim ur As Range
    Dim foundRange As Range
    Dim returnValue As Variant
   
    Set ur = sh.UsedRange
    Set foundRange = ur.Find(lookForValue, , xlValues, xlWhole)
    If Not foundRange Is Nothing Then _
        Set findValue = foundRange.Offset(0, offsetColumns)
End Function
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,958
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