I have a multi select value prompt. I know that user can always click on the the Select All option if they want to run it all. However what I want to do is that by Default all the the items on the prompt are All Checked or Selected. I know that in report studio if you have an optional multi select prompt and you did not select anything it will run for everything. But i wanted to show it to the user that once they run the report they can see all the items are checked. How do I do it?
You may be able to do it with javascript in an html item. Another option is to add a static option (e.g. 'ALL') to your prompt, set it as the default, and change your filter to ([item] in (?param?)) or (?param?='ALL').
Hello, I would also investigate the route of adding an html item with a .js reference. On the page load you could select all items contained in the control's collection.
add a filter like item=?parameter value? or ?parameter value?='all'
so that it can show single value based on your requirement or it will show all values