DataTable Select method error

Hello everybody,

online Academy course: advanced RPA developer.

I have two DataTable variables. The first one has all values, the second one just needs to get the filtered values.

DataTable2 = DataTable1.Select(“Type=‘WI5’ and Status=‘Open’”).

The error message tells me that I try to write into a Data.Row variable.

What exactly am I doing wrong? I am not using a Data.Row variable

try that:
@Kytyzow
YourDataTable.Select(“Type=‘WI5’ And Status=‘Open’”)
if not work, please hover the blue alert and show us which is the error you are getting amigo

Still the same error message.

Unwbenannt

i think you have to change your type of variable you are assigning to System.Data.DataTable, apparently your variable is System.Data.dataRow as the alert said

This is the problem, both variables (see the picture in post 1) are System.Data.DataTable.

can u share your workflow please?

RoboticEnterpriseFramework - Calculate Client Security Hash.zip (1.0 MB)

Enclosed the files.

get the error, chance the type of var varWorkItemList to an array of System.Data.DataRow
image

image

@Kytyzow

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.