HELLO . how can i make conditions in assign that validated if the column is contain specific value and empty. if the column is contains the value or empty do nothing if not contains na value copy the other row value
hi @ldiaz,
Would it be better to put an If activity and then assigns the values on the Assign activity accordingly?
If not, then the syntax to be passed on the Assign activity would be: If(expression, true return, false return)
HI @ldiaz
Check with this expression
If(FindRow("ACCOUNT TYPE").Tostring.Contains("CREDIT CARD"),"",FindRow(4).Tostring)
Regards
Sudharsan
Hi @ldiaz ,
find below conditions
If(FindRow(“ACCOUNT TYPE”).Tostring.Contains(“CREDIT CARD”) and String.IsNullOrEmpty(FindRow(“ACCOUNT TYPE”).Tostring),Nothing,FindRow(4).Tostring)
If(FindRow(“ACCOUNT TYPE”).Tostring.Contains(“CREDIT CARD”) or String.IsNullOrEmpty(FindRow(“ACCOUNT TYPE”).Tostring),Nothing,FindRow(4).Tostring)
Thanks,
Rajkumar
Also you can try with this @ldiaz
if(String.IsNullOrEmpty(FindRow("ACCOUNT TYPE").Tostring) Or FindRow("ACCOUNT TYPE").Tostring.Contains("CREDIT CARD"),Nothing,FindRow(4).ToSTring)
Regards
Sudharsan
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.