hey @Paddi
you can use the formula below.
Round(Round([YOUR NUMBER FIELD], .000001),.00001)
Please accept as solution if this worked for you!
Hope this helps!
Hi @Paddi
Please find my solution below.
If I understand your requirement exactly, where you need to round of to 5 decimal places.
Especially 2.682103 need to be round for 2.68210
If you use just Round([Field1], .00001) will give the output as 2.6821 and not 2.68210 which you are expecting.
So one step in additional implanted to get your expected solution.
Kindly accept this solution if it provided a solution to your question.
Many thanks
Shanker V
Hi @Paddi
My workflow:
Step 1: Input
Step 2: Formula tool
Output as expected like 2.68210
Kindly accept this solution if it provided a solution to your question.
Many thanks
Shanker V
Hi , this is Paddi's coworker, may i ask you to test 4.655665? it should be round to 4.65567, but failed by whichever solutions. Hope to know the reason.
Step 1: Input
Step 2: Regex tool
Step 3: Formula tool
Round(tonumber([Field1]), .00001)
PadRight(tostring([Out1]),7,'0')
if([RegExOut1]='5')
then tonumber([Out1])+0.00001
else [Out1]
endif
Output:
Kindly accept this solution if it provided a solution to your question.
Many thanks
Shanker V