Not printing all values which having look value is matched

Hi,

We are not getting the all values from lookup date table activity ,we have multiple values which match with “lookupValues” parameter.

It returns only the first found row index.

Regards,
Karthik Byggari

Hi,
Required the all values, please suggest how we can do it

Could you please suggest how we can get he all data.

Hi @kiranh

Sorry for delay.
You can use filter data table activity or DataTable.Select method to fetch the matching data.

For Example:

dtMatch = yourDataTable.Select("[ColumnName]='Value'").CopyToDataTable

Then you can loop thru the matched values -

For Each Row in dtMatch { }

Regards,
Karthik Byggari