Forum Discussion
Teams Live Event Attendee Report - Track Attendee Duration
It would be helpful to have a sample sheet so we can see how the actual data is presented and ideally include an example of what you are trying to get out. But assuming the data is:
TimeStamp | UserID | Action
Assuming all users are in same columns of data as indicated above and that the log is complete and will have logon and exit for every user then to know:
how long an attendee joined:
=Sumifs( [TimeStamp], [UserId], user, [Action], "Exited"] - Sumifs( [TimeStamp], [UserId], user, [Action], "Joined"]
NOTE: this will add times together if the SAME UserID logged off and back on multiple times
how many people are in the webinar at any given time should be something like:
=Countifs( [TimeStamp], "<"&time, [Action], "Joined"] - Countifs( [TimeStamp], "<"&time, [Action], "Exited"]
- MSWilkoDec 12, 2022Former EmployeeHi mtarler, I have uploaded a sample document! 🙂 In the meantime, will try the above. Thank you for your comment!
- mtarlerDec 12, 2022Silver Contributor
MSWilko see attached. The concept I used was the same but:
a) made the original data table formatted as a table to use table references
b) added a new Date Time column because the original one is text instead of a Date Value
c) used MAP and LAMBDA to automatically calculate the full array instead of fill down
hope this helps
- MSWilkoDec 20, 2022Former Employeemtarler
Hi, thank you so much for the attachment!
Unfortunately when I make any changes to the 'original data' tab (like pasting the new information) the date-time column H formula breaks. I try and paste that formula in again though returning #VALUE.
I am not great with excel - hence me posting on here - did you have any suggestions on how I can repair?
Thank you!