The user selecting all the date field objects as input prompts.
PM1Date between Enter Start Date And Enter End Date
or
SU77Date between Enter Start Date And Enter End Date
or
DR92Date between Enter Start Date And Enter End Date
or
LF55Date between Enter Start Date And Enter End Date
or
KR23Date between Enter Start Date And Enter End Date
The requirement is, the user don’t want to select dates for each object all the time, since the actual report has 55 date fields, is there any way that users select date range for only one object, but the report automatically applies a filter to all the other date field objects??
Hi Boes,
One way to manage it is to create a Condition in Designer with @prompt functions. The formula in the Where clause will look like that :
PM1Date between @Prompt(‘Enter Start Date’, ‘D’,{‘2014-01-01’}, mono, free ) And @Prompt(‘Enter End Date’, ‘D’,{‘2014-01-01’}, mono, free )
or
SU77Date between @variable(‘Enter Start Date’) And @Variable(‘Enter End Date’)or
DR92Date between @variable(‘Enter Start Date’) And @Variable(‘Enter End Date’)or
LF55Date between @variable(‘Enter Start Date’) And @Variable(‘Enter End Date’)or
KR23Date between @variable(‘Enter Start Date’) And @Variable(‘Enter End Date’)
…