I have created a list report that has 80 data items, and a prompt page with the same 80 data items listed as static choices. When the user selects specific data options, the report should only show the selected data. Is there a way to do this?
Thank you for this tip, unfortunately, it's not what I was looking for. The tip you provided helps in sorting the report based on a user prompt.
What I wanted to do was be able to list all 80 data items as choices for a user to select. When they have selected all the items they want in the prompt, the report should run, showing only the selected columns they have chosen in a list report. Do you know how to do this?
I do not think the offered solution is about sorting. Based on the input of the prompt it display a certain object.
However, this would account for one column at a time.
What you are searching for is a sort of conditional hide/display of column(data). You can format conditionally, but not hide/display AFAIK
As I said , you have to read between the lines of this supportlink article to extend it to your own purpose.
To have it in a simple way.
Defined how many maximum columns they can have .
Create as many list prompt as you need.
For each prompt you have create as many query items.
like
Query ItemX =
Case ?ParameterX?
When 'prodline' Then [Product Line]
When 'prodtype' Then [Product type]
When 'ordmethod' Then [Order method]
when 'Empty' then Null
End
Then your users can pick up the needed fields from each prompts.
For the 'Empty' choice you can defined a custom style where the column is Hidden. So that they can have less columns than your maximum amout of columns.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.