I am trying to reduce the number of decimals and for some reason, using a "fixed decimal" 258.2 does not change all numbers in my column to two decimal places.
Pretty much I have the following after specifying the number as a fixed decimal with 2 places:
- 6.933141
- 5.13
- 1.56
- 2.94
- 1.54
- 6.470931
So changing the amount of fixed decimals did not do it for me, so I have been trying to use RegEx, and came up with (^\d+.\d{2})
. This however only identifies what I want to keep.
Is there a way to do this using Regex_Replace?
Thank you all in advance for your help!