Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can I get this
Input | Output |
1 | 1 |
2 | 2 |
3 | 1 |
4 | 2 |
5 | 1 |
6 | 2 |
7 | 1 |
8 | 2 |
9 | 1 |
10 | 2 |
AutoNumber(Mod(RowNo(),2)) as Output
or
AutoNumber(Mod(Input,2)) as Output
AutoNumber(Mod(RowNo(),2)) as Output
or
AutoNumber(Mod(Input,2)) as Output
Or
If (Odd(Input)= -1,1,2) as Output