Forum Discussion
Time Range Filter: How to keep filtered values?
Hi,
I have the following problem I have a data set containing Sales values of a specific date (my short table below should clarify the topic). I would like to use a time range filter that says how the total sales of the beginng of a period and at the end of a period is. I want to display the overall total sales and the sales increase/decrease of that time range on one page.
If I adjust the time range and set it to 2.1 - 4.1, the value of the date 1.1 is filtered out so my total sales for 2.1 is 5 )instead of 25) and for 4.1 it is 45 (instead of 65). Anyone an idea how to solve this?
Is there any possiblity surpressing
Date Sales
1.1 20
2.1 5
3.1 25
4.1 15
5.1 10
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
6 Replies
- NielsDecoeneHelper I
Calculate( SUM(Sales);Datesbetween(DateTable;Min(Date);Max(Date)))
You'd have to use a filter with multi select.
Basically you will have to use Calculate Statement with a Datesbetween to specify a range of dates:
https://msdn.microsoft.com/en-us/library/ee634557.aspx
If I missed something tag me plz :)
- NilsooFrequent Visitor
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?- NielsDecoeneHelper I
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