Hi all,
This is a little hard to explain:
I have a table that contains a link to a user table (user_id), and a set of values… we’ll just call this “points.”
What I would like to do is populate another field, “points_since_last”, using “points” from that row, and “points” from the previous row with that same user_id. So the formula will be [“points” from this row] - [“points” from the previous row that has the same user_id or 0 if none exists]
Row:
ID | user_id | date | points_since_last | points