Hi. I did something similar. In my case I have 2 dates : A system date of the data (called 'latestbusinessdayend') and a hotel occupancy date. (called 'occupancyDate'). I wanted a way to set a report to only look at say, 7 - 14 days from today or the prior 7 - 14 days. The formula below creates a series of numbers (from negative to positive based on how far the occupancy date is from the system date) I was able to accomplish this using the TreatAs function that is in version 6.4 and higher: Note: I did have a version before 6.4 that did this but was way more complex.... TreatAs(_Number_, 'occupancyDate'n) - TreatAs(_Number_, 'latestBusinessDayEnd'n) To implement this, use a date selector of choice then use this as a filter on your dates. For example, the filter below will set the dates to be selected from +1 to +7 ( 'Days from LBDE TreateAS'n > 1 ) AND ( 'Days from LBDE TreateAS'n <= 7 ) In my opinion the date slider works best for selections as it is pretty easy for the user. If you want to make it smaller, you can put a non-selectable text box next to it. Good Luck, Roger
... View more