Extract Column values in Blueprism

Deepu0322

New Member
This is very late to respond but still. You can pull only particular column values using a simple customized code stage.

2 Inputs:
InputCollection (Collection) and ColumnName (text)

1 Output:
OutputCollection(Collection)

Code:
Dim view As New DataView(InputCollection)
OutputCollection = view.ToTable(False, ColumnName)

You get the output :)
 
Top