Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a simple straight table that has a dimension and an expression.
The expression either outputs yes or no.
However i cannot select the expression results to only show yes's or only show no's
can this be done?
Try creating a list box using this expression:
Aggr(If(Only({1}Numb) - Above(Only({1}Numb)) = 1, 'Match', 'Check'), DimensionsFromYourTableHere)
May be like this, to show just yes
If(Expression = 'Yes', Expression)
in the table or in the list box?
If you want to select the 'yes' or 'no' data.. you need to look on calculated dimension
What is the expression you are using right now?
Hi, matthewp.
See if the solution in Thread the help - Re: Searching with Set Analysis.
Otherwise, an idea would be use expression in object ListBox.
Ex.:
Aggr(Sum(expression),dimension).
Hope this helps!
Try within a listbox:
aggr(YourExpression, YourDimension)
- Marcus
=IF(Numb-Above(Numb) = 1 ),'Match','Check')
Try creating a list box using this expression:
Aggr(If(Only({1}Numb) - Above(Only({1}Numb)) = 1, 'Match', 'Check'), DimensionsFromYourTableHere)