If I have two columns of data with 10000 cells in each, and only three of the rows are not identical in both columns, how can I locate the different ones (without comparing each pair of cells)?
feedback
|
|
Not sure you mean by "without comparing each pair of cells" as you have to do some work to get the result you want?? If the columns to compare are A and B, I would put the following in cell C1 and then copy it down the entire range: =IF(A1=B1,"",1) Then the rows that are different will have a 1 in the relevant C column. | |||||
feedback
|
|
Adding to Linker3000's answer above. I would sort on Column C so that the different cells would sort to the top. That's easier for me than having to scroll through 10,000 rows to see which ones are different. | |||
|
feedback
|
|
Go to the Data Menu or Data Ribbon and select Filter. This will create filters for each column that you can select in the top row. Deselect the values that you don't want to see, and it will leave the rows (with numbers) that you do want to see. | |||
|
feedback
|
