Hello,
i have below data in excel
I need to get only those user names where value for SNCF column is “yes” and need to save all user names in one variable with comma saperation like below
ABC,PQR,GHD,BFD,GGF (ASD is not there as value is “no” in SNCF)
help me on same
Hey @Mathkar_kunal
Use Assign Activity:
String.Join(",", dt_Input.AsEnumerable().Where(Function(y) y("SNCF").ToString.Trim.ToLower.Equals("yes")).Select(Function(row) row("Users").ToString.Trim()).ToArray())
Happy Automation!
Best regards, Ajay Mishra
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.