Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
hi Experts
i am trying to get the max date from a date range slicer and the once you have the max date from the date range slicer concatenate this into a new measure to show - out put as shown below.
Solved! Go to Solution.
Worked it out
MAx Date =
VAR MaxOrder = LASTDATE('Date Calendar'[Date])
RETURN
"12 Months to"&" "& FORMAT(MaxOrder, "MMMM-YYYY")
Worked it out
MAx Date =
VAR MaxOrder = LASTDATE('Date Calendar'[Date])
RETURN
"12 Months to"&" "& FORMAT(MaxOrder, "MMMM-YYYY")
Hello @blestone111
You can try the below DAX formula and please let me know if this didn't work.
Max Date Text =
FORMAT ( MAX ( Dates[Date] ), "mmmm" ) & " - "
& FORMAT ( MAX ( Dates[Date] ), "YYYY" )
Below is the result I got -
Thanks, let me know if you face any issues.