I have Float field i have some formula need that:
if float equal 20.0000 the result will be 1
if float equal 20.25 the result will be 0.01
if float equal 20.555 the result will be 0.001
i guess we need to count number of digit after float point and check digit value
any solution to solve this ??