Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello, hopefully you can help me:
My doubt is I have the years 2019, 2020, 2021 and 2022 in filter until now. I only have the 2022 forecast of a series of data they gave me. When it comes to graphing the forecast, if the forecast appears but in ALL years, when it should appear in 2022 only. The forecast data was given to me and when I have information for 2023 and when they give me the forecast for that year, I have to get the 2023 forecast, and the 2022 forecast has to stay in 2022, and so on. My problem is that when I filter 2019 or any year I get the data from the 2022 forecast in the graph (blue line), the graph is called Total Carriers Forecast:
In conclusion, only the blue line should appear in 2022, as in the following graph:
Solved! Go to Solution.
Hi, @Syndicate_Admin
You can add a new measure like:
New Carriers Total =
VAR a =
CALCULATE ( [Carriers Total], FILTER ( Sheet1, Sheet1[Year] = 2022 ) )
RETURN
IF (
ISFILTERED ( Sheet1[Year] ),
IF ( SELECTEDVALUE ( Sheet1[Year] ) = 2022, a, BLANK () ),
[Carriers Total]
)
Best Regards,
Community Support Team _ Eason
Hi, @Syndicate_Admin
You can add a new measure like:
New Carriers Total =
VAR a =
CALCULATE ( [Carriers Total], FILTER ( Sheet1, Sheet1[Year] = 2022 ) )
RETURN
IF (
ISFILTERED ( Sheet1[Year] ),
IF ( SELECTEDVALUE ( Sheet1[Year] ) = 2022, a, BLANK () ),
[Carriers Total]
)
Best Regards,
Community Support Team _ Eason