i have created an automation where the robot use excel scop with read excel file and inside this activity is foreachrow. the problem is when i invoked a workflow inside the foreach row.
iin the invoked workfloe i have create an argument called “getcurrenrow” direction in and the type is “datarow” as shown and modifyed the typeinto activity as shown.
the problem is when i add the value inside the arrgument it gives me this error.
Argument ‘Value’: BC30311: Value of type ‘CurrentRowQuickHandle’ cannot be converted to ‘DataRow’. The selected value is incompatible with the property type.
as shown
why are you passing data row in workflow ? instead of that read excel and get data table, pass that data table in argument into workflow. and inside workflow, use for each datatable to read data row.