1.I have a table in UiPath apps, with the values. Now I want to write those data into an excel file.
You can trigger a process and then send the data as input to process and write to excel
Cheers
Yes I tried…
I created an in argument in studio I binded the argument with that table. While Execution it is showing an error(:- Object Ref not set to an instance of an Object)
Please check the value binding properly
As per error the data is empty or null
Cheers
Now I get it …it is the selected value binding…but not thw whole table which it displays…if you select any row and then trigger it would bind the values
Cheers
How to write the whole table into an excel? Kindly give me any suggesstion
You can’t pass table/object to process. Current process argument with apps support only generic plain value.
So what you can do you can just call the process and rest export of excel u can do using RPA process.
Like bulk data export from data service to excel. or single.
Thanks,
Arvind
Okay…Thanks
@Kathirvel_Saminatha I have a similar use-case and looking for answer too.
@Arvind_Kumar1 - This example shows that DataTable can be passed as argument to Process: https://docs.uipath.com/apps/automation-cloud/latest/user-guide/work-with-data-source-and-value-bind What are we missing here? Much thanks
you can pass data table from process to apps. but not from apps to process.
Thanks,
Arvind
This passes Apps to Process
And it is configured as an In argument in the Process
Am I interpreting it wrong? Thanks for the response
Are you able to select the row and send it as object to input argument data table?
Thanks,
Arvind
@Arvind_Kumar1 Yes but it’s not being received by the Process, the documentation says it’s possible with these options. Trying to figure out how to make it work
Thanks
Yes, I also agree that passing an object or a set of values as an array to the Input data table argument doesn’t work. We have discovered this limitation.
In the example provided, they update the “IsSelected” flag and then filter the records based on the “IsSelected” value for further processing.
I would suggest following a similar approach. Update the “IsSelected” flag in the data service, and then call the process. Within the process, establish a data service connection to filter the records based on the “IsSelected” flag. You can then perform the next operation based on the filtered values according to your business logic. Once the “IsSelected” operation is completed, you can reset the value in the process or apply another filter logic to obtain unique results.
Thanks,
Arvind
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.