ColumnName ColumnName1
Mirza 01
Mustaba 04
Hussain 10
ABC 01
XYZ 10
123 04
Mirza 05
Mustaba 09
Hussain 06
Friend1 01
Friend2 04
Friend3 10
I just want to get “Mirza” and “Friend2” and their particular code from ‘ColumnName1’, Any suggestions or help!
Thank you!
Hey,
you can use read range activity
for each row
strVar=row(“ColumnName”).tostring
if Split(strVar," “)(0).contains(“Mirza”) or Split(strVar,” ")(0).contains(“Friends2”)
then
strVar=row(“ColumnName”).tostring
else
continue Activity
thanks
In order to make inferences, it is necessary to know whether the data will always come in this way and whether you will always need these two outputs. Also, are these outputs taken from an excel?
If so ;
1-Read the excel using the “read range” activity. (inputDT)
2-Filter the data by the ranges you want using the “Filter datatable” activity or “assign activity”