I have a scenario where an Excel file contains multiple rows, each representing a unique download request identified by a distinct Request ID. The file structure looks similar to the example below.
My approach is to use a DataTable filter to isolate rows with the status “IN QUEUE.” For each of these filtered entries, I will search for the corresponding Request ID in another DataTable fetched from a website. This second table also contains the same Request IDs, but they may appear in a different order.
The goal is to match each Request ID from the first table with its counterpart in the second table and extract the associated URL for each request.
