Guys, I have a simple VBA question but I've been looking around and I can't crack it!

I'd like to delete rows based on a list. So:


I have a tab with a big list of data:
A B C D
--------
XX AA 3 4
YY BB 5 8
ZZ CC 6 9
...

Now I'd like to delete rows based on another list on another tab. This list could expand in the future.

So the other tab (delete) list:
A C
----
XX 3
ZZ 6

So the macro would check A&C from delete list = A&C from original list and delete the row. So the result on first tab would be:

A B C D
--------
YY BB 5 8


Thank you so much.
DrChris