Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago

Dynamic Date Filter based on user selection

All, 

 

I am working on a report that will allow my company to look at both vendor and customer payments within the last 5 days, and I am looking for a way that I can create this logic using DAX. If we could just do the most recent five days only, the relative filter function would be perfect, but unfortunately that is not what our user is requesting.

 

Basically, the user wants to be able to make a date selection at any point in time within the data set and and immediately filter to the five days preceding that selected date. 

 

Additionally, we are hoping to sort and limit the lists to the top 10 payments (by amount) from each category. 

 

Would love the help from the community on where to get started with this ask. 

4 Replies

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion

    Well, you could use a TopN filter for that second part. For the first part, you could structure your measures like this:

     

    Measure =
      VAR __Date = SELECTEDVALUE('Table'[Date])
      VAR __5DaysAgo = (__Date - 5) * 1.
      VAR __Table = FILTER('Table',[Date] >= __5DaysAgo && [Date] <= __Date)
    RETURN
      <Some calculation across __Table>

     

     

  • Anonymous's avatar
    Anonymous
    Not applicable
    Can you please show us the model? Also, please show us what you'd like to see as the final result. You can fake it.

    Thanks.

    Best
    D
  • Icey's avatar
    Icey
    Community Support

    Hi Anonymous ,

     

    Is this problem solved?

     

     

    Best Regards,

    Icey