Unable to get data from Excel to For each row

I have a excel sheet and i added queue and calling the excel data to for each row but i am unable to get it can anyone please help me



@bharadwaj.vuppalapati,

In recent updates Get Queue Items will not give you Specific Content and Output data. These values will be null.

Refer this article for alternative option for this.

1 Like

Can you try with β€œGet Transaction Item” activity.

yes I tried It and but i am unable to crack it

Can you share the screenshot.

@bharadwaj.vuppalapati,

With Get Transaction Item activity you will get Specific Content just check if your key is having additional β€œβ€.

Try with this

QueueItem.SpecificContent("""valfrom""").ToString

Also check TransactionItem.SpecificContent values in immediate or local panel while debugging.

Hey, try below:

You can use the following code to get the keys name from transaction item and then check if the key name given by you is correct or not

Log Message = String.Join(",",transaction_item.SpecificContent.Keys)

In above, transaction item is output variable of Get Transaction Item


@bharadwaj.vuppalapati,

Have you tried this and also show the transaction item in immediate window or locals where your keys will be visible

i tried it but unable to fetch the details

what is the output of this String.Join(β€œ,”,transaction_item.SpecificContent.Keys) ?
if you are getting any error let us know