Hi would any of you math people know how to setup a string to convert steps to Miles? thanks
since 1 step is 0.0004734848484848485 miles, or 1 mile is 2112 steps, then all you need is:
(#ZSC#*0.0004734848484848485)
https://www.convertunits.com/from/steps/to/miles
Brilliant, is there a way to limit the decimal places at all? thanks
Not a direct way, but there is one.
How many digits do you want to be visible after the comma?
ideally something like 3.5 miles I would be happy with one or two? is that possible?
That would be this:
((floor(x*10))/10)
so something like this do you mean?
(((#ZSC#0.0004734848484848485)(x10))/10)
I did something similar for my Hyper Active design. Used the following for Miles:
((round((#ZSC#*2.65)/52.8))/100)
and this for KM:
((round((#ZSC#/2000)*160.934))/100)
gave back values with 2 decimal points.
That’s spot on thanks for the help much appreciated