comparing 3 columns with VBAI

john222

New Member
Joined
Dec 14, 2017
Messages
2
I need to setup code that compares 3 columns. column C will have comparison values. I am trying to compare column C to D. If column D value is matching C, column F should be greater than 1. If not I would like to prompt user "Please put greater value in column F" and exit out of the code.

Is there any easy ways to do this in VBA?
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Give this a go. Copy to a standard module.

Change sheet name ("Sheet2") to your sheet name.

Howard

Code:
Sub Column_C_D_F()
Dim oneRng As Range
Dim c As Range

Set oneRng = Sheets("Sheet2").Range("C2:C" & Cells(Rows.Count, "C").End(xlUp).Row)

For Each c In oneRng

    If c = c.Offset(, 1) Then
    
      MsgBox "Please put greater value in column F " & "Row " & c.Row
      c.Offset(, 3).Select
      Exit Sub
     
    End If

Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,531
Messages
6,120,073
Members
448,943
Latest member
sharmarick

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