Does any one know method "checkDeletedRows"?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
Does anyone know method "checkDeletedRows" in VBA?

I have two ranges from two sheets and I need to find the row from rang B
that doesn't contain in rang A according to the value in column A of both
ranges ("the value is "ID")

Thanks,
Shlomit
 
On Sheet2 create following formula to an extra column to check if the value
exists on Sheet1 or not:

=VLOOKUP(A2;Sheet1!$A$2:$A$100;1;FALSE)

Formula will return #N/A, if Range on Sheet1 does not contain the value in
the Column A.

Regards,

Mika Oukka
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top