Forum Discussion
Multiple DATESBETWEEN filtering
- Anonymous6 years ago
amitchandakThanks your reply. Anyway, i can't make a reference to filter ExcludeRange by 'Sales'[person] and 'Sales'[date] as there is no relationship between the two tables. There are 'Person' & 'CalendarDates' tables which have relationship with these two tables. Finally i used Generate to build up a casterian between Sales and ExcludeRange and then do the filtering and the result seems work. As I am not quite familiar with DAX, it may not be simplied and optimized yet. Hope anyone has similar issue will find this help.
Exclude Sales = sumx('Person',
calculate(sum(Sales[Value]), filter(generate(Sales, ExcludeRange),
Sales[Date]>= ExcludeRange[StartDate] && Forecast[Date]<= calculate(ExcludeRange[EndDate], Allexcept(Sales, Sales[Person])) && Sales[Person] = ExcludeRange[Person]), Sales[Person] = earlier('Person'[Person])
)
)
One of the ways is to populate the index in your sales table and use it as a filter. When the index is blank
Max Index= Maxx(filter(ExcludeRange,'Sales'[person]='ExcludeRange'[person] && 'Sales'[date]>='ExcludeRange'[Start date] && 'Sales'[date]<='ExcludeRange'[end date]),ExcludeRange[index]) - Anonymous6 years agoNot applicable
amitchandakThanks your reply. Anyway, i can't make a reference to filter ExcludeRange by 'Sales'[person] and 'Sales'[date] as there is no relationship between the two tables. There are 'Person' & 'CalendarDates' tables which have relationship with these two tables. Finally i used Generate to build up a casterian between Sales and ExcludeRange and then do the filtering and the result seems work. As I am not quite familiar with DAX, it may not be simplied and optimized yet. Hope anyone has similar issue will find this help.
Exclude Sales = sumx('Person',
calculate(sum(Sales[Value]), filter(generate(Sales, ExcludeRange),
Sales[Date]>= ExcludeRange[StartDate] && Forecast[Date]<= calculate(ExcludeRange[EndDate], Allexcept(Sales, Sales[Person])) && Sales[Person] = ExcludeRange[Person]), Sales[Person] = earlier('Person'[Person])
)
)