oh i see. but my issue is that i need to display the trailing zero when
the value is zero, dynamically.eg:input -> output1.00 -> 1.001.000 ->
1.0001.0000 -> 1.0000the trailing zero must appear according to the
number of trailing zero user input. it must be dynamic. seeking for
advice. thank you.
Hi Radzmar,I have tried tried to test with just num{zz9.888}, whereby if
input 1.0, output should be 1.0 but it does not work. is there a bug in
the pattern? it still comes up as whole number, 1.Please advise. Thank
you..
Hi,I have a formcalc field, total_gross_weight, use to sum up all the
gross_weight field input by user. Its requirement are:Case:
total_gross_weight decimal place must be able change dynamically
according to user input in the gross_weight field. eg: gross_weight_1 +
gross_weight_2 + ... = total_gross_weight 1.001 + 2.000 + 3.000 = 6.001
(3decimal) - success1.0012 + 2.000 + 3.000 = 6.0012 (4decimal) -
success1.000 + 2.000 + 3.000 = 6. - FAIL. (it should be 6.000) I can
make it change dynamically ...