Hi all, I have table where the values are showing as
234.000000
56.000000
But we want to remove zeros and shown only
234
56
How we do this???
Hi @vishwa,
use eval round (https://docs.splunk.com/Documentation/SCS/current/SearchReference/MathematicalFunctions#round.28.26l...😞
| eval your_field=round(your_field,0)
Ciao.
Giuseppe
Hi @vishwa,
use eval round (https://docs.splunk.com/Documentation/SCS/current/SearchReference/MathematicalFunctions#round.28.26l...😞
| eval your_field=round(your_field,0)
Ciao.
Giuseppe
@gcusello ,@Thank you