Hi All,
previously we are using output data table to get the data table to string form.
but i want to know which modern activity can give data table to string
THANK YOU
Hi All,
previously we are using output data table to get the data table to string form.
but i want to know which modern activity can give data table to string
THANK YOU
Hi
Output datatable is already there in Modern activities as well
It’s under Installed activities
Check this out
Cheers @vineelag
Hi @supriya117
you can achieve this using the “Output Data Table” activity in combination with some modern features of UiPath. Here’s how you can do it:
Use the “Read Range” activity to read your DataTable from a data source into a UiPath DataTable variable (e.g., dtInput
).
Use the “Output Data Table” activity to convert the DataTable to a string. This activity allows you to specify the DataTable you want to convert (dtInput
), and it will output the DataTable as a string in the desired format.
Optionally, you can assign the output of the “Output Data Table” activity to a string variable (e.g., dataTableAsString
).
Here’s a summary of the steps:
- Read Range: Read your DataTable from a data source into a UiPath DataTable variable (e.g., dtInput).
- Output Data Table: Use the "Output Data Table" activity to convert dtInput to a string.
- Assign: If necessary, assign the output of the "Output Data Table" activity to a string variable (e.g., dataTableAsString).
- Use the 'dataTableAsString' variable in your workflow as needed.
Thanks!!
You can create a variable to hold the range and can be built with text or string you want
Then pass that variable to that Source range property
To enter a range, table, or sheet manually, select Custom Input.
Alternatively, you can select Open in Advanced Editor and enter a VB expression.
Cheers @vineelag
Hi @vineelag
Use Output DataTable activity which will convert your data table variable into string variable.
Hope it helps!!
I am not able to see any DT stored property for storing the output DT,
where can i see the filter output Data
Thank You!!!