Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: jchartrandIs there a way that I can split my data where it is not a whole number?
I'm currently getting creative, but would like to know if there is an easier way.
Currently I am using ceiling to get the highest integer, then dividing that back by the original value and splitting where the result is > 1.
Example
11.46
12.0
12.06
12.08
12.39
13.0
14.0
Output 1
12.0
13.0
14.0
Output 2
11.46
12.06
12.08
12.39
Thanks,
J