Need to add Unique value in Queue

PFB Test data

|Sr No|ASN|Name|
|1|ASHRAW-1|Javed|
|2|ASHRAW-2|Ansari|
|3|ASHRAW-3|Ansari|
|4|ASHRAW-4|Ansari|
|5|ASHRAW-5|Javed|
|6|ASHRAW-6|Javed|
|7|ASHRAW-7|Ansari|
|8|ASHRAW-8|Javed|
|9|ASHRAW-9|Javed|
|10|ASHRAW-10|Javed|

The above 10 rows already added in queue. Next day team is going to enter some new record from 11th row.

So when I start running my process/workflow I want only new row[From 11th row] data should get added to queue.

@Javed_Ansari

You can add another column called status

In that once you complete adding to the queue you change that row as completed

so in the logic you can filter as Status = NotComplete then only add to the queue

Hope this helps you

Thanks