Hi,
I'd really appreciate any help with this.
I have a spreadsheet which contains information about files. It has the file name and then a set of usernames that have access to it, along with a lot of other information. So it looks similar like this:
And continues for several thousand rows. The 'members' column isn't always the same number of people per column because some files are only accessed by one or two people and some are accessed by hundreds.
Essentially I want to find out which of the members have access to the largest number of files. Ideally I'd end up with a table saying:
and so on for each person.
What would be even better would be to have something like this:
and so on - is that something that could realistically be done?
Thanks in advance for any help.
I'd really appreciate any help with this.
I have a spreadsheet which contains information about files. It has the file name and then a set of usernames that have access to it, along with a lot of other information. So it looks similar like this:
File | Path | Members | Size | Accessed |
File1 | Pathforfile1 | Jude;Sam;Lucy | 105gb | 01/01/22 |
File2 | Pathforfile2 | Jude;Lucy;Steve;Helen | 96gb | 01/05/22 |
Essentially I want to find out which of the members have access to the largest number of files. Ideally I'd end up with a table saying:
Member | Number of files |
Jude | 1050 |
Lucy | 1003 |
Steve | 978 |
What would be even better would be to have something like this:
Member | Number of files over 10000gb the person has access to | Number of files over 7000gb the person has access to |
Jude | 12 | 100 |
Lucy | 40 | 102 |
Steve | 17 | 64 |
Thanks in advance for any help.