Add mask via bitshift?

0 votes
asked May 31, 2020 by alexpineda (120 points)
I'd like to use the Number type and something like in the Value field: "this.value >> 4"

I don't see an option for bit shifting in masks either.

1 Answer

0 votes
answered Feb 17, 2023 by guruadmin (680 points)
I'd suggest to do it with division. In case your number element is named BigNumber, set the Value field to

BigNumber / 16
...