Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have Scatter chart and input button, where I select minimum number in each month.
I want to show tags in the chart only according to condition N_month>Input Button(Variable1).
I use an expression
count({ $< N_Month={">$(=Variable1)"}>}[FieldName])
It shows all tags.
Thanks,
input botton works, but I can understand how connect my botton and students
Hi
It because, you used alternate state in multi box. So change it in default state . Then it works fine..
I can't do it, because I have other charts, where I select Student and Class.
In this case I have only 1 class and 1 student in scatter charts.
2 vovan4ik:
You didn't mention that you use alternative states.
There are two common states: default and inherited. $ - is default, while all charts if not specified use inherited state.
Remove leading $ from your set analysis expressions.
count({$< N_Month={">$(Variable1)"}>}[FieldName])
Yes, it was so easy.
Thank you for your help,