Expression for Tap for Stats?

Is there a way to implement a tap to cycle through information? The user would tap the screen and each tap would cyle through like steps, heart rate ect? I didn’t see a tag for touch counter or anything so not sure if this can be done? Thanks!
Mel

Use the modulo.

For example, for 5 options:

$(#VAR_1#%5)==0?100:0$ -> $(#VAR_1#%5)==4?100:0$

Set the opacity this way.

Demo: Facer - Thousands of FREE watch faces for Apple Watch, Samsung Gear S3, Huawei Watch, and more

Hi @mizmelzy76
Long ago I asked for the same thing and someone, unfortunately i don’t remember who, gave me this formula to insert in the opacity field.
$(#VAR_1#%6)==0?100:0$
In this formula %6 is the number of complications you can cycle thru. Raising or lowering the number after % you can change the number of complications.
==0 is the first compl; being ==1 second compl and so on.
To use the formula you have to create a VAR increment field and place it where you like.
For example if you add a Heart icon in opacity field you will insert $(#VAR_1#%6)==0?100:0$
Then you add BPM and in opacity you insert $(#VAR_1#%6)==0?100:0$
If you insert also a steps icon you will add $(#VAR_1#%6)==1?100:0$
So for steps counter $(#VAR_1#%6)==1?100:0$
and so on for all the complications you will add
Hope this will help
Cheers

Thanks for the replies. I appreciate all the help. :slight_smile:

Melissa