truncate value
is there a way to truncate a value if it gets higher than a specified number. For example: if you set a limit of 100 and the incoming value is 103, the 100 gets truncated, so the resulting value is 3. I could do this with the if-then expressions but if the value would be 206 than I would have to create a second instance of if-then. I am looking for a more efficient way.
modulo? % 100
How could I look over this? Thanks!