2nd condition for offset code

ndendrinos

Well-known Member
Joined
Jan 17, 2003
Messages
1,694
I would like to add a second condition here like this:
If the value of the offset = 0 OR differs from cellA
Example:
A…..B
1…… (is good)
1……1(is no good)
2……1(is good)


Code:
 For Each cell In Range("A17:A35")
            If cell.Value <> "" And cell.Offset(0, 1).Value = "" Then
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Try:

For Each cell In Range("A17:A35")
If cell.Value <> "" And (cell.Offset(0, 1).Value = "" Or cell.Offset(0,1).Value <> cell.Value) Then
 
Upvote 0
Not tested:
Code:
For Each Cell in Range("A17:A35")
If Cell.Value <> "" And (Cell.Offset(,1).Value = "" Or Cell.Offset(,1).Value <> Cell.Value) Then
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,738
Members
452,940
Latest member
Lawrenceiow

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