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.