Data is collected in this example intake sheet below and the metrics are summarized in another metrics sheet below.
The following formula collects the Project ID and gives the count per associated Platform and Status. However, I need to display the Project Name as well as the count on my portfolio dashboard.
How can I fix the Join formula to collect the various project names? (The IF statement is for removing counts of zero to hide them from the scatterplot).
=COUNT(COLLECT({Project ID}, {Project Status}, $Label@row))
=IF(COUNT(COLLECT({Project ID}, {Project Platform}, [Platform 1]$1, {Project Status}, $Label@row)) >= 1, COUNT(COLLECT({Project ID}, {Project Platform}, [Platform 1]$1, {Project Status}, $Label@row)), "")
=JOIN((COLLECT({Project Name}, {Rollup Status}, $Label@row)), ", ")
Here is the output I am currently getting:
Here is an example dashboard, where I would like to display the project name in each platform summary.