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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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