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,
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])
HI
Try like this
count({ $< N_Month={'>$(Variable1)'}>}[FieldName])
Hope it helps
Try without equal sign:
count({ $< N_Month={">$(Variable1)"}>} [FieldName])
To get it work N_Month and Variable1 should be numbers.
My expression works, but it show all tags.
To easy understand my problem, imagine a school with classes.
I select 1 class in a list box.
My chart shows all students in this class. Then I select my minimum.
It should be show only students who has more than my Minimum.
But I see all students in the school.
HI
Can you upload a sample file?
updload the sample file so that we can help you with that.
My expression works, but it show all tags.
My expression works too, and it shows only tags in a set { $< N_Month={">$(Variable1)"}>}
Please see below attached file.
Hi
Can you able to say, what your requirement..
Its works.
Please see the attached file.
I select Class 1 in list box. It should be only students with capital Letters.
Chart with Variable shows all students.