Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
How do you make the title card dynamic where insteading of stating "Last Month" it would say last 28 days (For Feb) in March but this would change to last 31 days in 2 weeks time (for March) in April
Solved! Go to Solution.
@Anonymous , Assume the month selection is coming from a date table or today
Measure =
var _max = day( eomonth(if(isfiltered('Date'),MAX( 'Date'[Date]) , today()),0))
return
"Last " & _max & " Days"
Hello @Anonymous ,
This can be accomplished by extracting the last day of the selected month
Using the following function combination:
test = day(EOMONTH(MAX('Table'[Date]),0))
Here is a picture for your convenience, as well as a link to a sample file.
https://drive.google.com/file/d/1Yl96_tsBjz6kWNMjDcmbjdCuCDavSaRU/view?usp=sharing

Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
@Anonymous , Assume the month selection is coming from a date table or today
Measure =
var _max = day( eomonth(if(isfiltered('Date'),MAX( 'Date'[Date]) , today()),0))
return
"Last " & _max & " Days"
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 19 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 60 | |
| 52 | |
| 47 | |
| 40 | |
| 38 |