How to filter the scrapped data?

Hi @naveen.s

Can you try this

queueItem = "YourQueueItem"
found = (From row In dtTable.AsEnumerable()
         Where row.ItemArray.Any(Function(c) c.ToString.Contains(queueItem))
         Select row).Any()

If found
    message = "Present"
Else
    message = "Queue item not found"

Regards,