Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, for a line chart, I have included the following in the measures to limit the chart areas to years 2015 to 2019:
Avg({<[Year]={">=2015<2020"}>}Vacancy)
However, when selecting specific years (e.g. 2017-2019) on storyboard, the chart does not seem to respond to the selection. Any help on this?
Hi,
It is because you hard coded that value. you can create your set analysis more dynamic
try below
Avg({<[Year]={">=$(=min(Year))<$(=max(Year))"}>}Vacancy)
Regards,
Prashant Sangle
Hi, thanks for the prompt response! But this displays all the values though (year 2002 to 2020). My original expression allows me to display only year 2015 to 2019 on the chart, but only issue is that it's not responding to selections in storyboard. Any alternatives?
That's great, it's working perfectly now! Thanks!!