Firstly, a golden shovel award 😉 you dug up a thread from 8 years ago 😄 But seriously. If you have a field which looks like a number but doesn't work like a number (nummerical functions don't give you expected results), you're probably dealing with a text field containing string representation of a number. You have to convert it to number first. | makeresults | eval stringfield="17.1654923" | eval bad=round(stringfield,2) | eval good=round(tonumber(stringfield),2)
... View more