I found the index of missing arrays using the following function in Excel VBA:
absentArr = Application.Match(Data, varrayReference, False)
How do I extract the values that are missing in array "Data" when compared with the reference array "varrayReference"?
I can seen the non-matching arrays in the array "absentArray" but I need the corresponding missing IDs that are in the "Data" array (for example Data(18), Data(20) that show non matches in the "'absentArray"). Is there a way to get the missing cells in the "Data" array? Thanks!

