Originally posted by: Dudd
This is very possible with Excel. I poked around in Excels Macro features one afternoon during my summer job, and I can kindof remember what you'd have to do. Now, I don't know how to output to another cell, but I'm going to assume that you don't need the rows that will be deleted. First, declare a variable and set it to 1. Then, set up a while loop such that (x<=SPREADSHEET.ACTIVEROWS). (I know that's not exact, but it should be close to what you want). Then, set up a simple boolean statement such that if (E[x]!=M[x] && F[x]!=N[x]) (exact notation is probably wildly off, as I said I only have one afternoon's experience with Excel), and if that is true, then ROW[x].DELETE. Run a search on google for the exact functions you need to implement my logic. Hope that helps somewhat, as ATOT'ers helped me out a lot when I was in your situation.