Forum Discussion
NCW
3 years agoFrequent Visitor
Get Duration from Logged In and Logged Out data per User
I am looking to find the total time users are logged into our system. The way the data is exported currently does not show how long they were logged in. I don't know the best way to do this within Po...
- 3 years ago
NCW ,
a new column = if([Action] = "RemoteLoggedIn",
datediff( [Date], Minx(filter(Table, [user Name] = earlier([User Name]) && [Action] ="RemoteLoggedOut" && [Date] > Earlier([Date]) ) ,[Date]), Minute) , Blank())
amitchandak
3 years agoSuper User
NCW ,
a new column = if([Action] = "RemoteLoggedIn",
datediff( [Date], Minx(filter(Table, [user Name] = earlier([User Name]) && [Action] ="RemoteLoggedOut" && [Date] > Earlier([Date]) ) ,[Date]), Minute) , Blank())
- NCW3 years agoFrequent Visitor
This works great. Thanks!