Much more info required--please don't make us guess what you are after. I'm (already) guessing you really mean the fields you are setting equal to the parameters.
Yes, I have a date range parameter in the report that upon a selection, I want to suppress another parameter (frequency) in the report.
i.e. choosing a choice in the date range parameter will make the frequency parameter disappear and choosing a frequency in the frequency parameter will make the date range parameter disappear.
You mean you want to provide a choice of which parameters to apply? Try setting up a higher order string parameter {?Which Parameter} with the options: "Date Range" and "Frequency".
Then set up your record selection formula (report->selection formula->RECORD) like:
(
if {?Which Parameter} = "Date Range" then
{table.date} = {?daterange} else
if {?Which Parameter} = "Frequency" then
{table.frequency} = {?Frequency}
)
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.