Forum Discussion

SwapnaChippagi's avatar
SwapnaChippagi
Frequent Visitor
8 years ago

Forecasting

Is there any way to display dynamically  last three data points(forecast values ) with different colour other than previous colour points in line chart.

5 Replies

  • Stachu's avatar
    Stachu
    Community Champion

    you can create a ew measure just for forecast and plot both on he chart, his will have the same visual effect, e.g.:

    Regular = SUM('Table'[Val])
    Forecast = CALCULATE([Regular],'Table'[Type]="Forecast")

    how do you determine the last 3 data points? is there a flag, or is it based on time?