Hello,
I am wanting to know how I can place a conversion of steps into miles on a watchface. its nice to know the steps but i also like to know the miles. I have a watchface now that does this, but i cannot figure out how to create my own.
thanks for any help i can get
1 Like
Use this formula, it will convert steps to miles or km, depending on users settings.
$#UNITSYS#=IMPERIAL?((round((#ZSC#*2.65)/52.8))/100) mi:((round((#ZSC#/2000)*152))/100) km$
If user is using metric system it will show km, if user is using imperial system it will show miles.
3 Likes