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.
Hi all,
I have data as follows:
Date MonthnYear
1/7/2020 July 2020
2/7/2020 July 2020
3/7/2020 July 2020
4/7/2020 July 2020
5/7/2020 July 2020
6/7/2020 July 2020
1/8/2020 Aug 2020
2/8/2020 Aug 2020
3/8/2020 Aug 2020
4/8/2020 Aug 2020
6/8/2020 Aug 2020
8/8/2020 Aug 2020
8/8/2020 Aug 2020
I have my max date values measures as follows:
Solved! Go to Solution.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@Anonymous
Your dax is almost ready .Use below change
Formatted Max Date=
VAR MaxDate = MAX('Date Table (Actuals)'[Date])
VAR MaxDateAll = CALCULATE([MaxDate], ALL('Date Table (Actuals)'))
RETURN
FORMAT(MaxDateAll,"MMM YYYY")
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Hi @Anonymous
Try
FORMAT(MAX('Date Table (Actuals)'[Date]),"mmmm YYYY")
This works but I need All as well, to ignore row level filter in my visuals
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 |