ColumnDifferences Method Example
This example selects the cells in column A on Sheet1 whose contents are different from cell A4.
Worksheets("Sheet1").Activate
Set r1 = ActiveSheet.Columns("A").ColumnDifferences( _
Comparison:=ActiveSheet.Range("A4"))
r1.Select