Hello Alteryx Community,
I'd like to use the Multi-Row Formula to look at a column's next row in comparison to the current row, and create a new column that only displays value if these two rows are at least a value of 10 apart from each other.
What I have right now looks like this:
IF(([Row+1:Value] - [Value]) < 10)
THEN
NULL()
ELSE
[Value]
ENDIF
This is populating a new field called "Value Increase".
All of these fields are Int16.
Right now it doesn't seem to be working, and my output is populating all of my newly created column's values as NULL.
Any help in trying to get this to work would be greatly appreciated.