Output DataTable Element

I have a DataTable all values have the type int32, and i need to output only one DataTable element.

i try: DataTable.Rows.Item(“Age”).ToString error: option strict on disallow implicit conversions from “String” to “integer”

@Arettu63

Check below for your reference
https://forum.uipath.com/t/rpa-datatable-get-previous-row-column-value-set-to-current-row-column-value/256199/3

Hope this helps you

Thanks

@Arettu63 , Kindly share your workflow. I want to look deep into it as you are converting it to string and error is of integer.

Are you using the

DataTable.Rows.Item(“Age”).ToString

in the assign activity?

if so just change the variable type to string

im use it in log message activity.
Column Age = 12

i finded solution: DataTable.Rows(0).Item(“Age”).ToString

1 Like

@Arettu63,
Do one thing store DataTable.Rows.Item(“Age”) in one variable called var.
And check its value while debugging. Is that giving value or not?
Then input that var.ToString.
Then let me know

@Arettu63

Please see this example.

Regards
Anand

1 Like