- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
vishwa
Path Finder
05-24-2024
06:50 AM
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???
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

gcusello

SplunkTrust
05-24-2024
06:55 AM
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
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

gcusello

SplunkTrust
05-24-2024
06:55 AM
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
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
vishwa
Path Finder
05-24-2024
10:28 AM
@gcusello ,@Thank you
