Modulus Function (Remainder after division) [closed]
Hello.
I'm trying to figure out how to separate a whole number from the remainder.
For example, after and equation I get (3.14). I'd like the 3 in one column and the .14 to be saved in another so I can carry it to the next calculation.
Is this possible?
Thank you, -Chris
Please note that numerical contents and results (numbers) may also be negative.
You will have to decide explicitly if you want -3.14 to be split into
(-3|-0.14)
or(-4|+0.86)
.The suggestion by @librebel will return the second pair.