Page 1 of 1
Date Column through Drill Down
Posted: Wed Aug 26, 2020 8:24 pm
by omkar.patange
Hello,
How to pass the date column (Fixed date) through drill down into another page.
The main report is the calendar, which passes the FromDate and ToDate to another page.
Need to know the drill down parameter expression for 2 elements FromDate and Todate
and the filter on the other page. Thanks
Re: Date Column through Drill Down
Posted: Wed Aug 26, 2020 8:31 pm
by Lech Kulikowski
Hello,
You can add Drill-Down parameters with the necessary values and then use on the drill-down page - {this["ParameterName"]}
Thank you.
Re: Date Column through Drill Down
Posted: Wed Aug 26, 2020 8:39 pm
by omkar.patange
Lech Kulikowski wrote: ↑Wed Aug 26, 2020 8:31 pm
Hello,
You can add Drill-Down parameters with the necessary values and then use on the drill-down page - {this["ParameterName"]}
Thank you.
I used
DrillDown Parameter 1= Name: FromDate
Expression: this["FromDate"]==8/16/2020
DrillDown Parameter 2= Name: ToDate
Expression: this["FromDate"]==8/29/2020
FIlter in the onther page
this["FromDate"]== Info.Work_Date.ToString("d")
this["ToDate"]== Info.Work_Date.ToString("d")
Not showing up
Re: Date Column through Drill Down
Posted: Thu Aug 27, 2020 6:41 am
by Lech Kulikowski
Hello,
Expression this["Param"] should be used on the drill-down page, not in the parameter value expression.
Thank you.