-
Make value restart at 1 every time it exceeds 5
Hi all,
I’m looking for an expression that make a value property restart at 1 every time it exceeds a certain value. The value 5 for instance should give this result:
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 1
7 = 2
8 = 3
9 = 4
10 = 5
11 = 1
[…]I would really appreciate help with this one!
Thanks,
Mikael