I have a table of data that shows activity in relation to users web activity and I need to establish a time spent on each page for each user.
My data has
At the moment I am using
but this return an empty result.
TIA
My data has
- User name
- Time landed on the page
- Any Links clicked on the page
At the moment I am using
Code:
=calculate(max(logs20191002[Time]),filter((logs20191002),logs20191002[webpage_user]=logs20191002[webpage_user]),filter((logs20191002),logs20191002[Date]=logs20191002[Date]),filter((logs20191002),logs20191002[Time]<logs20191002[Time]))
TIA