Hi, Can someone help me with this.
I have fields with values SP=3390510 and TP=3394992
I am trying to get Success percentage
| eval Success=(SP/TP)*100
the expected value is 99.8679% but I am value as 100.0000%
I also set precision to 0.0000 but I am not getting the expected results
Try a different formula
| eval Success=(SP * 100)/TP
or maybe
| eval Success=exact((SP/TP))*100
Try a different formula
| eval Success=(SP * 100)/TP
or maybe
| eval Success=exact((SP/TP))*100