Hi Guys, Sorry for the delay but I found the solution, what I did. First, I took Slider for "select date" for single value Then I took drop-down list object for the same date but converted in character format. You know very well that Drop-Down list object can't take Date/Datetime. So, for that reason, I converted the same date into character format and assign to drop-down list and create a parameter (Full Date_Char Parameter) to pass value. And the right side panel, select "Required" option and create interaction between these two objects Slider and Drop-Down list. Then I take a list table to display a revenue value. Now, Select the same list table and go to right side panel "Filters" tab and click on "Add Filter" and create Now what I'm doing here Let an example:- We're going to take the same date : 23-Sep-2016 (an example Numeric value of the date- 206) Pass the drop down list value which is a parameter (Full Date_Char Parameter) in the Parse function convert the character to Date format and then TeastAs function convert Date to numeric format. you'll get value - 206 DayofMonth function converts the date to Day and then subtract by 1. you'll get value from this formula:- (23 -1) = 22. Subtract these two values and get the start of the month date.. Value :- 184 (1-Sep-2016) The betweeninclisive function gives the range. 184 to 206 (1-sep-2016 to 23-sep-2016) Through this the way you can get the date from the start of the month date to till selected date. Regards, Sunny Kumar Gupta
... View more