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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
arhan1234
New Member

Volume €/ month in a graph

Hello all,

I would need some help with a monthly workload forecast table.

Source of the data is an Excel.

My main aim is to see people's workload (Volume €/ month) during the confirmed and active projects, that's between their Start and End dates, and sum them per month.

How could we graph Volume € in a monthly timeline and filter it using "Confirmed" and "Type" variables?

I've tryed my best, but I can only get the amount only in a date, not during the project lifetime.

Thanks a lot,

Regards

 

Volume-month.JPG

 

2 ACCEPTED SOLUTIONS
v-jiascu-msft
Employee
Employee

Hi @arhan1234,

 

Please try out the demo in the attachment. 

1. Create a Date table.

2. Don't establish any relationship.

3. Create a measure. 

Measure =
CALCULATE (
    SUM ( Table137[Volume €/month] ),
    FILTER (
        Table137,
        Table137[Start] <= MIN ( 'Calendar'[Date] )
            && Table137[End] >= MAX ( 'Calendar'[Date] )
    )
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Thanks a lot, it is just I needed! Robot Very Happy

 

View solution in original post

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @arhan1234,

 

Please try out the demo in the attachment. 

1. Create a Date table.

2. Don't establish any relationship.

3. Create a measure. 

Measure =
CALCULATE (
    SUM ( Table137[Volume €/month] ),
    FILTER (
        Table137,
        Table137[Start] <= MIN ( 'Calendar'[Date] )
            && Table137[End] >= MAX ( 'Calendar'[Date] )
    )
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks a lot, it is just I needed! Robot Very Happy

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.