The Inspire Pin contest has begun! Win a free pass to Inspire by submitting your design to be made into a real-life pin! Submission details can be found here.
I am trying to extract the all digits before decimal point from a fixed decimal column.
For eg, if the number is 132345.00000 , I need to extract "132345". How can I achieve this?
Solved! Go to Solution.
This should resolve your issue. Floor will remove the decimal part of the number, which leaves you with an integer.
TONUMBER(FLOOR([YourColumnName])) IF YOUR INCOMING FIELD IS A NUMBER
TOSTRING(FLOOR([YourColumnName])) IF YOUR INCOMING FIELD IS A STRING
