VBA code to only affect blank cells

KGards7

New Member
Joined
Mar 31, 2022
Messages
9
Office Version
  1. 2016
Platform
  1. Windows
Hi all, I am currently using the following vba code which I have assigned to a button which basically performs a vlookup between two workbooks but for columns S, T & U in the "SAS MI Extraction - TEST" workbook I want it so that it only affects blank cells. At the moment if there is any existing information in columns S, T & U the below code overrides what is in there. I don't want that to happen and to leave any existing text in the columns alone:

"Sub PerformChecks()

Dim w1 As Worksheet, wAs Worksheet
Dim c As Range, FR As Variant

Application.ScreenUpdatin False

Set w1 = Workbooks("SAS MI Extraction - TEST").Worksheets("SAS MI Data")
Set w2 = Workbooks("OIMDataRefresh_DMZ").Worksheets("OIMDataefresh_DMZ")

For EachIn w1.Range("R2", w1.Range("R" & Rows.Count).End(xlUp))
FR = Application.Match(c, w2.Columns("A"), 0)
If IsNeric(FR) Then w1.Range("S" & c.Row).Value = w2.Range("F" & FR).Value
If IsNumeric(FR) Then w1.Range("T" & c.Row).Value = w2.Range("H" & FR).Value
If IsNumeric(FR) Then w1.Range("U" & c.Row).Value = w2.Range(J" & FR).Value
Next c

Application.ScreenUpdating = True

End Sub"
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Hi there

This is untested...

VBA Code:
Sub PerformChecks()

    Dim w1 As Worksheet, w2 As Worksheet
    Dim c As Range, FR As Variant
    Dim checkRange As Range
    
    Application.ScreenUpdating = False

    Set w1 = Workbooks("SAS MI Extraction - TEST").Worksheets("SAS MI Data")
    Set w2 = Workbooks("OIMDataRefresh_DMZ").Worksheets("OIMDataefresh_DMZ")
    Set checkRange = w1.Range("R2", w1.Range("R" & Rows.Count).End(xlUp)) ' Combined range to check
    
    For Each c In checkRange

        ' Check if the cell in column S, T, U is blank
        ' and if there is a match in the lookup range
        If Len(w1.Range("S" & c.Row).Value) = 0 And Len(w1.Range("T" & c.Row).Value) = 0 And Len(w1.Range("U" & c.Row).Value) = 0 _
                And IsNumeric(Application.Match(c, w2.Columns("A"), 0)) Then
            FR = Application.Match(c, w2.Columns("A"), 0)
            w1.Range("S" & c.Row).Value = w2.Range("F" & FR).Value
            w1.Range("T" & c.Row).Value = w2.Range("H" & FR).Value
            w1.Range("U" & c.Row).Value = w2.Range("J" & FR).Value
        End If

    Next c

    Application.ScreenUpdating = True

End Sub
 
Upvote 0
Try:

VBA Code:
Sub PerformChecks()

    Dim w1 As Worksheet, w2 As Worksheet
    Dim c As Range, FR As Variant

    Application.ScreenUpdating = False

    Set w1 = Workbooks("SAS MI Extraction - TEST").Worksheets("SAS MI Data")
    Set w2 = Workbooks("OIMDataRefresh_DMZ").Worksheets("OIMDataefresh_DMZ")

    For Each c In w1.Range("R2", w1.Range("R" & Rows.Count).End(xlUp))
        FR = Application.Match(c, w2.Columns("A"), 0)
        If IsNumeric(FR) Then
            If w1.Range("S" & c.Row).Value = "" Then w1.Range("S" & c.Row).Value = w2.Range("F" & FR).Value
            If w1.Range("T" & c.Row).Value = "" Then w1.Range("T" & c.Row).Value = w2.Range("H" & FR).Value
            If w1.Range("U" & c.Row).Value = "" Then w1.Range("U" & c.Row).Value = w2.Range("J" & FR).Value
        End If
    Next c

    Application.ScreenUpdating = True

End Sub
 
Upvote 0

Forum statistics

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