I have a set of data with the following headings:
Username; StartTime; Duration
I need to find some way to illustrate how many users are logged in at the same time (only if there is more than 1, list the usernames OR user count).
There seems to be information regarding if you want to check if a specific date falls within a start and end date, but I can't find something for my specific problem.
For example:
| User | StartTime | Duration |
|---|---|---|
| UserA | 02/13/17 13:15 | 00:29:00 |
| UserB | 02/13/17 13:20 | 00:30:00 |
I should get the information out that UserA and UserB were using the service at the same time.