Forum Discussion
Anonymous
5 years agoNot applicable
Time diffirent between pages in each session
Hi, I have a table like in the picture: In each session, a user visits a few pages How can I calculate the average time between pages in each session? I try: AVG_Time = AVERAGEX( ADD...
amitchandak
Super User
5 years agoAnonymous , Create a new column like
new column =
datediff(maxx(filter(Table, [session_id] = earlier([session_id]) && [page] = earlier([page])), [Date/Time]), [Date/Time], second)
- Anonymous5 years agoNot applicable