Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How can i disable the selection for a field?

Hi,

i have one field like Products and don´t want that the user can select something in this field. It should only shows data.

How can i disable the selection for a field?

regards,

Sam

2 Replies
ogster1974
Partner - Master II
Partner - Master II

perhaps use Set Analysis in your product measure

Sum({1} [Products]) : sum of everything (All dimensions are completly reset to All)

that way it will ignore if the user has filtered on product the result will still be all.

Anonymous
Not applicable
Author

There is no "read-only" option in the Filter object.  You can use though a text object with the measure

=concat(distinct Products, chr(10))
You cannot select in a text box, and it will only show what is available.  If you want to show the full list all the time, regardless any selections, use set:

=concat({1} distinct Products, chr(10))