Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hii All,
I know that we have an option in listbox properties by hide excluded option,
But if i am doing this the grey colored portion is shown by the listbox for unselected value,
I want to remove that colored portion as well.
My task is that the selection of field is done by the buttons,
i have multiple buttons to select some particular field in each button,
which is showing the selected result in a common listbox,
but the problem is that i want to show only the selected portion related to my field selection from the button, but it is showing me the listbox with the grey portion related to unselected values.
Please Help how can i remove it,
Thanks and Regards in Advance,
Sorry, I replied without reading the entire post. Try:
List box expression : Aggr(YourField, YourField)
General tab -> hide excluded
Hii Tresesco,
Thanks for Instant Reply,
But i applied this option due to which i am getting some selected value with some grey colored space for unselected values.
The main problem was this please go through the question again and help me regarding this.
Thanks.
Hi
The way to do this is to create a straight table, with the field as a dimension and an expression of =1. Then hide the expression.
HTH
Jonathan
Sorry, I replied without reading the entire post. Try:
List box expression : Aggr(YourField, YourField)
Thanks Tresesco.
But, in case of check box selection, when i select one value it is hiding remaining values though the data is present.
It's not allowing to select multiple values. Could you pls help?
Lets say we have a field called [%Measure_Label] and another flag field [%Measure_External_Flag] which has values 1,0 and works in Tandem with the %Measure_Label.
Based on Internal External Flag we would show the list values to the user.
if the user is Internal who should see all fields the set analysis variable vInternal_External_Selection should evaluate to *
and if user is External who should see fields with flag value 1 the set analysis variable vInternal_External_Selection should evaluate to 1
=aggr(only({1<[%Measure_External_Flag]={$(vInternal_External_Selection)}>}[%Measure_Label]),[%Measure_Label])