Skip to main content
Nintex Community Menu Bar
Question

Branch not working

  • July 7, 2024
  • 1 reply
  • 18 views

bill.fox
Forum|alt.badge.img+7

I have the following action Branch that is not returning true.

The value are in the image.  Why?

 

IF (ROUND({{Do_Not_Email_Length__c}}, 0) = 0, true, false)

1 reply

Forum|alt.badge.img+7
  • Nintex Employee
  • July 8, 2024

Hey Bill, I’m not quite sure what the formula is trying to accomplish but I see a couple potential improvements.

 

  1. If you’re trying to check if the result of the ROUND() is 0, you want to use `Round(x)==0` instead of `ROUND(x)=0` since the later is setting the value and not comparing values
  2. Round only takes in a single argument, so the 0 is not doing anything. It’s rounding the first value and ignoring the second.