I want to filter a particular column for a range of value ie -1000 to +999. What Condition expression should I use?
2 Likes
Try something like: 0 <= c2 + 1000 < 2000
with c2 replaced with your column of interest.
2 Likes
Thank you! It Worked!!!
1 Like