Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a bar chart, table and filterpane. I want to add the reference line for the bar chart in such a way that the reference line should be based on the filterpane, if no selection is done the reference line should show the complete value, If selection is done it should show only value related to that selection. The important criteria is reference should not change based on the other selections except the filterpane.
thanks,
mukesh
in your measure expression you should use a set analysis to ignore all selections except for the subject field.
ex. sum( {1< subject = $::subject >} your_measure_field )
what fields do you have on your filterpane ?
subject
in your measure expression you should use a set analysis to ignore all selections except for the subject field.
ex. sum( {1< subject = $::subject >} your_measure_field )
A slight Modification of Andrea expression,
sum({<subject=>} your_measure_field)
This Expression also work ...!!
The value has to be overall value instead of any selection
That any selection includes "Subject"?
for eg.: I have many filterpanes subject,x,y,so on...There is a bar chart with reference line. The reference lines should change the values only with respective to the selection in subject only, not with the other x,y,z so onn fileds.
did you try the expression i suggested you?
yes i tried but its not wrkng