Forum Discussion
hashanr
6 years agoFrequent Visitor
Use two Drop down slicers as FROM /TO filter dates
Hello everyone, I have this requiremnet where there is two dropdown slicers used to select from/to period. These drop down contains period in [Month] [Year] format and not in proper date format. ...
amitchandak
Super User
6 years agohashanr , you may have created two independent date/month tables and choose a month from those as from and 2 and create a measure like
Measure =
var _min =maxx(ALLSELECTED('Date1'),'Date1'[Date])
var _max =maxx(ALLSELECTED('Date2'),'Date1'[Date])
return
CALCULATE(SUM('order'[Qty]),filter(all('Date'),'Date'[Date]>=_min && 'Date'[Date]<=_max))
hashanr
6 years agoFrequent Visitor
Hi Thank you for your input. I got answers with similar solution from few of members. All considered, I managed to overcome challange. thank you for your support !
- Anonymous3 years agoNot applicable
Hi, could you please share how it got resolved. Would be helpful. Looking for similar solution.