The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
81 | |
81 | |
37 | |
34 | |
31 |
User | Count |
---|---|
94 | |
80 | |
60 | |
50 | |
49 |