Forum Discussion
How to use parameter input to calculate Date
- 2 years ago
Hi, what you need is a date dimension table with weeks in it and need to join with your fact table. then you can find the max available date in the fact table and based on that you can create an week index column in date table. Now using that index, you can filter.
Hence to start with solution, lets create Max available week column in the date dimension to see what is the max date available and its corresponding week.
Max week avl col =VAR _maxDt =CALCULATE(MAX(Usages[Dim Date ID]),ALL('Date'),ALL(Usages))RETURNLOOKUPVALUE('Date'[End Of Week],'Date'[Dim Date ID],_maxDt)Once done, then create a week index column:Week Index =DATEDIFF('Date'[End Of Week],'Date'[Max week avl col],WEEK) + 1 (+ 1 to avoid zero for latest week)Then I have added week index in a slicer and filter > 0 ( less than zero would be future week index)If this resolves your problem, then please mark it as solution, Thanks!
Hi, what you need is a date dimension table with weeks in it and need to join with your fact table. then you can find the max available date in the fact table and based on that you can create an week index column in date table. Now using that index, you can filter.
Hence to start with solution, lets create Max available week column in the date dimension to see what is the max date available and its corresponding week.
If this resolves your problem, then please mark it as solution, Thanks!