Store dataTable row count in queue

hi team,
I want to save the row count of dataitems present in datatable into queue for later reference.How can we do that?

@som17 It Should be easy to get the row count using the Datatable variable in this way:

DT.Rows.Count

You can then add this Row Count to the Queue

1 Like

Hi @som17,

You can add the Datatable Rows Count to the Specific Data instead of the Reference field by adding it to the parameters in the Add Transaction Item Activity.

  1. Extract the row count like DT.Rows.Count.
  2. Add it in parameter like “Record Count” (left box - Key) = DT.Rows.Count (right box - Value).

Warm Regards,
Ranjith Udayakumar

2 Likes