Condition If?

I want to check value in countNA15 , countNa45.
If countNA15 or countNa45 not equal 0 —> run loop then.
But if countNA15 and countNa45 equal 0 —> run else

Now I use workflow as below.
image

image

It run loop then.

Please guide me for solve it.

@Maria99

Try it in below way.

    CountNA15.Tostring.Equals("0) AND CountNA45.Tostring.Equals("0)
     Then
              Next step to perform
      Else
              Next step to perform

If both values are equal to zero then it will go Then part else it will go to Else part.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.