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 nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. 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"
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 53 | |
| 42 | |
| 30 | |
| 24 |