Forum Discussion
Time Range Filter: How to keep filtered values?
- 9 years ago
So what you're looking for is a running total to that point in time?
So this would result to
Calculate( SUM(Sales);
Datesbetween(DateTable;Min(Date);Max(Date));
ALL(Date Table) Removes all filters on the date table
)
This should provide a running total, if my datesbetween statement is wrong
have a look at
Hey,
thanks for your response.
Unfortunately, this is not quite what I am looking for. Let me clarify this.
On the same page I have on value that should show me the total sales upon an specific date e.g. 4.1 --> total sales = 65.
On this page I have another value which should show me the amount sales in the seletecd time range 2.1 - 4.1 --> #sales in time range = 45.
On the page there is the time range filter that allows me to adjsut the time period (see screenshot)
To calculate the amount of sales in the selected time range is easy. It's also no problem to calculate the overall total sales by surpressing all filters. However, calculating the total sales upon a specific date seems to be tricky since the time range filter, sorts out all the data that is not in the time range.
If I want to know what is the total sales on 4.1 I kneed to know what was the sales on 1.1 to add it to the #sales in time range.
But I don't know how to get these information. Anyone?
So what you're looking for is a running total to that point in time?
So this would result to
Calculate( SUM(Sales);
Datesbetween(DateTable;Min(Date);Max(Date));
ALL(Date Table) Removes all filters on the date table
)
This should provide a running total, if my datesbetween statement is wrong
have a look at
- Nilsoo9 years agoFrequent Visitor
Sorry but it is not working...
- Nilsoo9 years agoFrequent Visitor
hey NilsDecoene,
thanks for introducing the Datesbetween function. I solved it now!
You need to create 2 measueres.One that contains the all the Data up to the starting date of the filter and the second one that contains all data.
You need to apply the Datesbetween function for the first one. You set the start date on 01/01/1900 and the End Date to
min(Date).
Best.
Nils- Nilsoo9 years agoFrequent Visitor
With this solution you only need one meassure that gives you the running total:
max. Date = Calculate( COUNT([Sales]);
Datesbetween('Sales'[Date].[Date]; Max('Sales'[Date]); 01/01/2100);
ALL('Sales'[Date])
)