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?
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
User | Count |
---|---|
18 | |
16 | |
14 | |
6 | |
5 |