Hi all
I wonder is there a tag for steps target and traveled miles/km?
thnx. Peter
Hi all
I wonder is there a tag for steps target and traveled miles/km?
thnx. Peter
Not as far as I know.
The tags should all be listed here:
Thank you.
Hi @r-e-l-a-x
Not sure about the “Target” formula but a while back someone posted a formula for distance, here they are:
Km: ((round((#ZSC#*0.0762)))/100)
Mi: ((round((#ZSC#*0.0476)))/100)
I think I used the km one in one of my designs, give it a try
For steps targets you need to use a conditional. This is what I’ve used in one watch face. You can figure out what you need from it.
Steps Goals 2.5k, 5k, 10k, 25K
$(#ZSC#)>=2500&&#ZSC#<5000?100:0$
$(#ZSC#)>=5000&&#ZSC#<10000?100:0$
$(#ZSC#)>=10000&&#ZSC#<25000?100:0$
$(#ZSC#)>=25000?100:0$
Just use the codes in the opacity window for whatever goal you want to turn on when it’s reached.
Hi Ozarour and mrAntiSocialGuy
Thank you both for the examples and sorry for the bit late reaction.
greetings Peter.
Thank you so much for this I was trying to figure this out and was failing horribly
Thank you mrantisocialguy for this I was wondering if a text worked for goal not sure if I am doing something wrong nothing shows up its blank I will keep trying to figure it out
You can also use this formula:
$#UNITSYS#=IMPERIAL?((round((#ZSC#*2.65)/52.8))/100) mi:((round((#ZSC#/2000)*160))/100) km$
It will show miles or km, depending on the user’s phone/watch settings.
It’s a bit better solution if you plan to publish your watchface.