Hello All,
I am trying to round on one decimal number into calculation. suppose I am multiplying 160.31 x 855 x 0.1= 13706.505, and I want it as 13706.51,
now suppose VarAmount=13706.505, RoundOfLimit=2
I have used math.round(VarAmount, RoundOfflimit) in which RoundOfLimit comes from config file. I have set it to 2. I want round of decimals up to two decimal numbers. Please suggest how to do it.