Excel VBA Lookup values to populate matching columns

sarge_leo

New Member
Joined
Dec 31, 2017
Messages
2
I'm trying to lookup values from Master Data worksheet check if "CONDITION 1" is true and to populate with "Value" each column with header "SITE # 1" in Project Visit worksheet having empty row using VBA.
Note that number of row and columns will remain variable, hence I'm want to use <code style="margin: 0px; padding: 1px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 13px; line-height: inherit; font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, sans-serif; vertical-align: baseline; background-color: rgb(239, 240, 241); white-space: pre-wrap;">.UsedRange</code> to cut down unnecessary loops.

MASTER DATA
paPSd.png


PROJECT VISIT

QyHem.png





 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
With the MASTER DATA sheet being the active sheet, try this macro:
Code:
Sub copyValue()
    Application.ScreenUpdating = False
    Dim LastRow As Long
    LastRow = Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    Dim rng As Range
    Dim foundUnit As Range, foundSite As Range
    Dim sAddr As String
    For Each rng In Range("C2:C" & LastRow)
        If rng = "True" Then
            Set foundUnit = Sheets("PROJECT VISIT").Range("A:A").Find(rng.Offset(0, -2), LookIn:=xlValues, lookat:=xlWhole)
            Set foundSite = Sheets("PROJECT VISIT").Rows(2).Find("SITE # 1", LookIn:=xlValues, lookat:=xlWhole)
            If Not foundSite Is Nothing Then
                sAddr = foundSite.Address
                Do
                    If Sheets("PROJECT VISIT").Cells(foundUnit.Row, foundSite.Column) = "" Then
                        Sheets("PROJECT VISIT").Cells(foundUnit.Row, foundSite.Column) = rng.Offset(0, -1)
                        Exit Do
                    End If
                    Set foundSite = Sheets("PROJECT VISIT").Rows(2).FindNext(foundSite)
                Loop While foundSite.Address <> sAddr
                sAddr = ""
            End If
        End If
    Next rng
    Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

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