SOLVED
How to Round Down
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
JBO
8 - Asteroid
‎10-19-2017
07:27 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I need to round down my data to whole numbers.
1.56 = 1
1.43 = 1
2.78 = 2
3.01 = 3
Any help much appreciated.
Solved! Go to Solution.
Labels:
- Labels:
- Preparation
2 REPLIES 2
20 - Arcturus
‎10-19-2017
07:34 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
FLOOR(x)
Returns largest integer less than or equal to (x)
OpenExample
FLOOR(1.1) returns 1
FLOOR(6.54) returns 6
FLOOR(-30.42) returns -31
Cheers,
Mark
Returns largest integer less than or equal to (x)
OpenExample
FLOOR(1.1) returns 1
FLOOR(6.54) returns 6
FLOOR(-30.42) returns -31
Cheers,
Mark
Alteryx ACE & Top Community Contributor
Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
‎10-23-2017
07:56 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you so much! And thank you for getting back to me so quickly. You saved me from having to do a lot of extra work. Cheers!
