Field = 1.123456789
Field = 14.123456
Field = 3.1234567
I need to run a query that will return the number of decimals for each record in Field.
Expected Result:
9
6
7
| eval decimal=len(mvindex(split(Field,"."),1))
View solution in original post
Exactly was I was looking for.Thanks!