How to edit or change multiple filters at once
In the same report, or across multiple reports?
in the same report
are you referring to changing the usage properties for the filters ?
I have one report with 50 base columns, 22 unions and 11 joins
The filter condition is applied as (current_date-1), now I have to change filter condition as user can select the date as per required.
this filter is applied to all the unions and joins, so how can I change it in one step.
Quote from: krunal on 06 Apr 2017 03:59:21 AM
I have one report with 50 base columns, 22 unions and 11 joins
The filter condition is applied as (current_date-1), now I have to change filter condition as user can select the date as per required.
this filter is applied to all the unions and joins, so how can I change it in one step.
you would need to create a prompt for date and then replace the filter condition as (?date?-1). here date will be selected by the user during runtime of the report.
if you want to change all filters at once then you can replace it using the XML of the report, but you need to be very careful while doing that.
Thnx Raghuvir