Distance Calculation to 2 Decimal places

just trying to figure out a calculation that will provide consistent 2 decimal places?

My Distance calculation is :
([SC]*0.00060725)

which typically provides me with something like
7.345

what I would like is something more like
7.34 or 7.35

so some form of round/floor/…

My formula (crazy formula) for distance in kms:
((([SC]*0.000762)*1000-([SC]*0.000762)*1000%1000)/1000%10).((([SC]*0.000762)*1000%1000-([SC]*0.000762)*1000%100)/100)((([SC]*0.000762)*1000%100-([SC]*0.000762)*1000%10)/10)

It’s for 2 decimal places :wink:

My calculation in km with 2 decimal places
((([SC]*0.762)-([SC]*0.762)%10)/1000)

Yes, but I have still shows 2 decimals, you not. Example if you walk 2 km, your formula shows 2, my 2.00 :wink:

why do you put everywhere ([sc]*0.000726)*1000 instead of [sc]*0.726 ?

Look here Tags for text

1 Like

I’m with @Peter on this one. If you can simplify the math you should do it. Less operations.

thanks all for the information!