19 Jun 2020 01:12 AM
Or alternatively, simply give users the ability to use negation or wildcard when viewing/filtering user sessions.
Solved! Go to Solution.
19 Jun 2020 01:07 PM
You could Use the User Session SQL to filter out everything that is not Null:
SELECT userId FROM usersession WHERE userId IS NOT NULL ORDER BY userId ASC
Let me know if you need any assistance!