Hi all,
I do have data which i am loading to queue form excel, For each transection i need to add the results in same excel Please let me know How can i add the data in excel in REFW.
Thank yo!!!
Hi all,
I do have data which i am loading to queue form excel, For each transection i need to add the results in same excel Please let me know How can i add the data in excel in REFW.
Thank yo!!!
Hi @vineelag
In a UiPath ReFramework (Robotic Enterprise Framework), you can add data to the same Excel file that you are processing by following these steps:
’ Create a new DataRow with the same structure as the DataTable
Dim newRow As DataRow = excelData.NewRow()
’ Add data to the columns
newRow(“ResultColumn1”) = “Some result”
newRow(“ResultColumn2”) = “Another result”
’ Add the new row to the DataTable
excelData.Rows.Add(newRow)
By following these steps, you can add the results of each transaction to the same Excel file you are processing within the context of the ReFramework.
Thanks!!
can you share with me in a xaml for this logic
Thank you!!!