Hi There,
I need help on following topic:
Suppose i have an Excel workbook with student records consist of Column of Names(0), Marks(1), Total(2) and Percentage (3)
While adding it to Queue, I want to priortize Names that contain “Sachin” as High and remaining as Normal.
How i will do this and how i can get my “high priority” Queue item processed first.
You will use the for each row in datatable activity to iterate the each row in datatable and add items to queues.
→ Then Inside for each insert an If activity to check the condition.
Condition is CurrentRow("Names").contains("Sachin")
→ Inside then block insert the Add Queue item activity and Give the queue name and Select the high option in Priority dropdown in properties. Check the below,
→ In else block insert the same Add Queue item activity and give the same queue name then select the Normal option in Priority dropdown in properties.
By following the above steps, if the Sachin name comes then it will go to Then block and add the queue item to same queue with High Priority, if the name doesn’t contain Sachin then it will go to else block it will add queue item to same with normal priority.
Check the below workflow for better understanding,
When you are adding the data item to the Queue, set the priority to High for data items having name as Sachin
CurrentRow(“Name”).ToString.Contains(“Sachin”)
Hi,
I would have a similar need, but instead of a fixed descriptive field on a data variable.
example if data is +2 days from today, put the transaction in priority on the queue.