In the attached excel I want to perform large operation on each row having error(column)>0 and with Receiver Component(column)> ASN. Sometimes it’s only 1 but sometimes it’s more than 1. But for more than one there are few activities extra that’s needed to be added and also I want to stop the loop once it’s done.
If anybody can help me in putting the logic
Little more explanation:
if ( rows having (error >0 and component = ASN) >1)
{
has some extra activities
basic workflow
}
else ( rows having (error >0 and component = ASN) =1)
{
basic workflow
}
Hi @_arbso I want to do below mentioned process basically:
if ( rows having (error >0 and component = ASN) >1)
{
has some extra activities
basic workflow
}
else ( rows having (error >0 and component = ASN) =1)
{
basic workflow
}
You can try going through each row of the datatable with the for each row in data table activity and putting an IF activity with the condition for example:
CurrentRow(“Error”) > 0 AND CurrentRow(“Receiver Partner”).Contains(“ASN”)
// workflow
else
(your other condition)
// workflow