VBA Compare Values of 2 Columns and Populate Larger Value

rsmeyerson

Board Regular
Joined
Nov 29, 2014
Messages
104
Code shown below updates column "U" but it is not ignoring empty cells in column "V" (a formula always exists in "V", but sometimes no value exists). I would like "do nothing" if value in column "V" is empty. Thank you.

Code:
Dim Wt As Object     
Application.ScreenUpdating = False
Application.ErrorCheckingOptions.OmittedCells = False
For Each Wt In ActiveWorkbook.Worksheets
    If Wt.Name = "IProg" Then
        With Wt
            .Range("L:W").NumberFormat = "#,##0.00_);[Red](#,##0.00)"
            For iii = 2 To .Cells(Rows.Count, "A").End(xlUp).Row     
                If .Cells(iii, "U").Value < .Cells(iii, "V").Value Then
                    .Cells(iii, "U").Value = .Cells(iii, "V").Value
                End If
            Next iii
        End With
    End If
Next
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Rich (BB code):
For iii = 2 To .Cells(Rows.Count, "A").End(xlUp).Row
    If .Cells(iii, "V").Value <> "" Then
        If .Cells(iii, "U").Value < .Cells(iii, "V").Value Then
            .Cells(iii, "U").Value = .Cells(iii, "V").Value
        End If
    End If
Next iii
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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