Hello,
We have a sheet for tracking projections for project managers on multiple projects.
I'm trying to develop a formula to return a list of project managers who have less than a certain amount of hours per month.
I can do a formula to calculate how many hours that PM on that row has for that period, but I can't figure out how to do a JOIN function to concactenate them.
If I do:
=SUM(DISTINCT(COLLECT([10/23]:[10/23], [Project Manager]:[Project Manager], [Project Manager]@row)))
I get how many hours that PM has for all their projects for that period which I could do a JOIN(DISTINCT() function on a separate tab, but it'd take a ton of additional columns.
I think I'm looking for something like:
=JOIN(DISTINCT(COLLECT([Project Manager]:[Project Manager], SUM(DISTINCT(COLLECT([10/23]:[10/23], [Project Manager]:[Project Manager], [Project Manager]:[Project Manager]))), < 30)), ", ")
that will return a list of Project Managers that have <30 hours for that month/period.
Any thoughts how I get there?