I’m using REFramework in my project there I have a Datatable consists of more columns but adding queue based on the column-“Match”, In Match column it has Matching and Not Matching only two values, here I’m filtering only Match columns and adding it to the Queue, also I’m adding one unique value into the queue, Once process done I need to update same excel in the status column which has Matching value in Match Column, if item retried I have to overwrite the same row, should not append the same row, Anyone pls Suggest.
Use Filter Data Table to filter rows where the “Match” column has a value of “Matching”. These rows will be added to the queue.
For each item added to the queue, ensure you’re adding a unique value (like an ID) to later identify and update the same row in Excel.
After processing, update the “Status” column in Excel based on the unique value, ensuring you overwrite the existing row instead of appending a new one.
If the item is retried, make sure you update the same row, not adding a duplicate. Match the unique identifier to find the correct row in the Excel file.
Best regards,
Ania