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.
I would like to write DAX formula which would take a selected list of dates and provide me with the same dates but from Last year,
List of currecnt dates:
Solved! Go to Solution.
Hi @Natalia10000 ,
You can try the following DAX:
FILTER(ALL('Date'),
'Date'[Date]>=
EDATE(MIN('Date'[Date]),-12)&&'Date'[Date]<=TODAY())
Refer to :
EDATE function (DAX) - DAX | Microsoft Learn
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Natalia10000 ,
You can try the following DAX:
FILTER(ALL('Date'),
'Date'[Date]>=
EDATE(MIN('Date'[Date]),-12)&&'Date'[Date]<=TODAY())
Refer to :
EDATE function (DAX) - DAX | Microsoft Learn
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
consider using this function:
in the filter Argument of the calculate function
If my reply helped you solve the problem please accept it as the solution 🙂
Hi, thank you for Your response, but this one also needs continuous dates selection? I mean there should be no gaps between dates?
To be more specific the dates that I have is the random selection of days
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
6 | |
6 | |
3 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
3 |