This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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"
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 32 | |
| 27 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 50 | |
| 31 | |
| 26 | |
| 22 |