Is there a way to remove decimal places without rounding the number?
For example: 64573.74 is the number but i would only want to see 64573.
If this is possible please elt me know the work around.
Thanks!
FLOOR function or Regex tool could be used
Sure, just wrap your field in FLOOR()
e.g. Floor([Field1])
Would change
2334.79
to
2334
Ben
It doesn't work for me... someone can help me?