Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Hi @Anonymous ,
Is this problem solved?
Best Regards,
Icey
Hi @Anonymous ,
If I understand you correctly, you can refer to this post:
Display Last N Months & Selected Month using Single Date Dimension in Power BI.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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>
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
26 |
User | Count |
---|---|
95 | |
50 | |
43 | |
40 | |
35 |