Forum Discussion

Konrad90's avatar
Konrad90
New Member
2 years ago

Visualization to show cross projects

Hello PowerBI masters, 

I would like to ask you how to solve problem which I found in my task. 
I need to create a chart that shows the project and the teams that are working on a specific project.
But I have to show only projects where is more than one team. 
I have 3 main tables which I'm using to achieve some results. 
Employees 
Projects 
EmployeeBooked where I have estimated hours for specific project.
This is simple model which reflect my real one. 


Employee table


Projects table - where each project has main team but multiple team can working in this project.

EmployeeBooking table.

I'm trying to achive stacked chart which be focusing only on Projects with multiple teams. 
But the problem is than I don't know how to filter out Project with single team. 
My measure to count Teams:

Count Cross Teams =
COUNTROWS(
    SUMMARIZE(
        'EmployeeBookings',
        Projects[Name],
        Employees[Team]
    )
)



 

If enyone can give some tips how to calculate and show in proper way projects only with multiple teams I'll be very grateful 🙂
Have a nice day!

 

1 Reply