How to put >0 in multi split option?

What should I put in the >0 box for it to split down the correct path?

Right now it does not lead anywhere.

You need to do the logic in step one, for example bind it to if value>0 return “>0”, then check for the output of the condition. Basically you need to return values from the condition.

Hi @raelyn :wave:

To build on Broberto’s answer, if you only have 2 branches(>0 and 0), the True/false split action should do:

If you have more than 2 branches (e.g. <0, 0, and >0), then something like this should work:

The idea is that, in the condition of the multi-branch, you need to return the value that you then have in your branches. So you’ll notice in my example that for branch 2, 0 is a number whereas branches 1 and 3 refer to strings.

2 Likes