Is it a BUG???
Hi everyone!
I’m currently working with numeric calculations in Fluent Forms and I’ve run into a bit of a snag. I’m hoping someone can help me understand the logic behind why one formula works while the other doesn't.
The working formula: ({input.fil_10} + {input.fil_11}) / 2 This correctly calculates the average of the two fields.
The formula that fails: round(({input.fil_10} + {input.fil_11}) / 2, 0) When I add the round() function, the calculation stops working and doesn't return the any result.
I’d love to understand the reason behind this behavior...
Thanks in advance for the help!"
Have you tried round((({input.fil_10} + {input.fil_11}) / 2), 0) ?
Jonathan Gwyer it worked... so simple!!!... thanks ma friend
André Góis darn brackets LoL
Janice Bennett when in doubt, add another pair!