How to add variable data to Data table column?

I have 2 variables

  1. BatchID : 1010
  2. Source : University

I already have a data table with following data inside it:

1

I want to add those variables value to my datatable column (BatchID and Source)

The output i want to get is shown below:

2

Please share your suggestions on this issue.

Thank you in advance

we would recomend to start with:

  • For each row / for each row in Datatable Activity | row in YourDataTableVar
    • Assign activity: row("BatchID") = BatchIDVar
    • Assign activity: row("Source") = SourceVar

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