Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
romovaro
Responsive Resident
Responsive Resident

Showing 3 / 4 / 5 months before GLD

Hello

 

I want to crate a table showing the amount of projects by PM and date.

 

CustomerProjectCountry Long NamePMActual/Schedule Go Live
Client ANCPFFR01FranceJohn Smith 1/1/2024
Client BASPNFR01FranceLudovic Garcia4/1/2024
Client BASPNDE01GermanyLudovic Garcia4/1/2024
Client BASPNKR01Korea, Republic ofLudovic Garcia4/1/2024
Client BASPNMY01MalaysiaLudovic Garcia4/1/2024
Client BASPNRU01RussiaLudovic Garcia4/1/2024
Client BASPNES01SpainLudovic Garcia4/1/2024
Client BASPNCN01ChinaLudovic Garcia4/1/2024
Client CTNSGTH01ThailandKlaudia Fernandez5/1/2024
Client D2181SwitzerlandJean Claude6/1/2024
Client D2208FrancePierre2/1/2025

 

 

I need to create a table showing months that PMs are busy with a project. Usually PMs start the projects 3-4 months before Go live date. the idea would be to show something like this:

 

 Jan-24Feb-24Mar-24Apr-24May-24Jun-24Jul-24
Ludovic7777   
Klaudia Fernandez 1111  

 

Ludovic has 7 projects going live in April 2024. That means he is busy starting Jan 2024 (Go live date - 3 months). 

Klaudia has 1 project in May 2024, therefore busy from Feb to Apr.

 

Any idea would be welcome

 

thanks

3 REPLIES 3
3CloudThomas
Super User
Super User

Create a calculated column for NewDate

3MonthsPrior = DATEADD('Date'[Date], -3, MONTH)

Create a measure 
NumOfProjects = COUNT( 'Project'[ProjectId])

Place on a Matrix visual with PM on Rows, 3MonthsPrior on columns and NumOfProjects in value.

thanks 3cloudThomas,

 

I thought about this approach but in only shows the total projects 3 months before the GLD date.

 

with your formula I see the "kick off date project" in pink.

And currently my report is showing GLD in red.

 

The view I would like to achieve is to show total projects from starting to GLD.

In the case of Ludovic, also showing -2 Month and -1 month

 Jan-24Feb-24Mar-24Apr-24May-24Jun-24Jul-24
Ludovic7777   
Klaudia Fernandez 1111  

 

 

Thanks,

 

 

Jan-24Feb-24Mar-24Apr-24May-24Jun-24Jul-24Ludovic7777   Klaudia Fernandez 1111  

You could have a row in a fact table for each month and if the project is active.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors