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
victoriashenton
Frequent Visitor

Forecasting

Hi Everyone!

 

I am new to Power BI and was hoping someone could help me.

 

I have 3 lines on a line chart. Scheduled, deployed and to be completed. 

I would like the red line to stop at the date bin 09 Jun. How would I do this? The scheduled and to be completed I would like to stay the same.

GraphGraph

 

 

Deployed Cumulative Quantity =
CALCULATE (
SUM ( Deployed[Count]),
FILTER (
ALL ( 'Dates'[Date (bins)] ),
'Dates'[Date (bins)] <= MAX('Dates'[Date (bins)])
)
)
 
Scheduled Cumulative Quantity =
CALCULATE (
SUM ( Scheduled[Count]),
FILTER (
ALL ( 'Dates'[Date (bins)] ),
'Dates'[Date (bins)] <= MAX ( 'Dates'[Date (bins)] )
)
)
 
To be completed Cumulative Quantity =
CALCULATE (
SUM ( 'To be Completed'[Count]),
FILTER (
ALL ( 'Dates'[Date (bins)] ),
'Dates'[Date (bins)] <= MAX ( 'Dates'[Date (bins)] )
)
)

 

 

1 ACCEPTED SOLUTION
TeigeGao
Solution Sage
Solution Sage

Hi @victoriashenton ,

In your scenario, we can add the 'Dates'[Date (bins)] <= MAX('Dates'[Date (bins)] && 'Dates'[Date (bins)] <= DATE (2019,6,9)

Best Regards,

Teige

View solution in original post

1 REPLY 1
TeigeGao
Solution Sage
Solution Sage

Hi @victoriashenton ,

In your scenario, we can add the 'Dates'[Date (bins)] <= MAX('Dates'[Date (bins)] && 'Dates'[Date (bins)] <= DATE (2019,6,9)

Best Regards,

Teige

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.

Top Solution Authors