Forum Discussion
Anonymous
9 years agoNot applicable
datediff in columns with a equal id
I'm trying to calculate the date difference between rows that have the same issueid in the case we have more than one entry. I tried to use a method that I searched here but I could not make it wo...
MarcelBeug
9 years agoCommunity Champion
In the solution I provided, data from the current row was merged with data from the previous row.
Now it looks like you want to merge data from the current row with the data from the next row.
You can adjust the step in which the tables are merged: instead of merging the table on Index.0 first and Index.1 next, you need to merge the table on Index.1 first and Index.0 next.
Anonymous
9 years agoNot applicable
Ok. I will try.