My input data is
I want to create another column which should be
| Position | Length | Column |
| 23 | 1 | |
| 24 | 2 | 25 |
if the length is "2", then it has to take this column "Position" and add 1. If it is 1, then leave it blank
I tried using if the clause, but i'm getting an error(Type mismatch in operator "+")
IF [length] = "2" THEN [position] + "1"
ELSE Null()
ENDIF
Can someone pls help me fix this?
Thanks!