In Alteryx is it possible to create lead or lag functions where it can take the previous field from another row and add it as a field to its row as seen below. I want to make an end date to my data for the user to understand which record was active during a specific point in time
Oracle Example:
LAG() OVER PARTITION(UNIQUE ID ORDER BY ...)
Raw Data
Unique Id Start Date
234 20140101
456 20151001
456 20161201
789 20151001
789 20161101
Derived data
Unique Id Start Date End Date
234 20140101 99991231
456 20151001 20161130
456 20161201 99991231
789 20151001 20161031
789 20161101 99991231