Hello everyone

I've managed to solve this problem with formulas but they are slowing down my workbook as excel needs ~2mb for a list of about 2000x150 cells.
So, I thought there might be an easy solution in VBA?

Let's say, I have a "Sheet1" with the list

A B
1 Txt1 Txt3
2 Txt2 Txt4

and a "Sheet2" with the list

A B
1 Txt1 Txt3
2 Txt2 Bla

What do I want to achieve?

In "Sheet 3" I want to extract all rows from the list in "Sheet2" that are different from the rows in the list in "Sheet1" (at least in one cell).
That would give me:

A B
1 Txt2 Bla

As my full list contains plenty of empty cells, it would be cool if I didn't have to put code into every cell to check for equality.

Thank you in advance
I appreciate the help here a lot