Need solution for below problem statement

I have Queries with me in Excel, I have add those into Queue.

The queries I am having 3 different banks as seen in the below image,

I have add those into queue, then the bot going to read those queue items got process.

My Question is, how do i process all 3 queries in one transaction.

Hi @ManjunathReddy

You need to add it as a QueueItem right if I’m not wrong?

Thanks,
Srini

Exactly I need to add.

@ManjunathReddy

In this case you need to check for if the value is SBI then append the value of the Query to the datatable and then using Add Queue item activity you can push your data

But if you have more data then you need to use Filter method / Join method to have a column as Query and then you can push to Queue using Bulk AddQueue Item

Hope this may help you

Thanks,
Srini

Is this an Excel file?

Read Range into a datatable. Bulk Add Queue Items.

When you then Get Transaction, you’ll have the queries in transactionItem.SpecificContent(“SBI”) and transactionItem.SpecificContent(“Kotak”) and transactionItem.SpecificContent(“Axes”)