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
Hey guys,
Can anybody help me with the below concern?
I'm looking to get the last date of next year February month. For example, if the current year is 2022, I want next year's February end date, which is 28-02-2023. I'm trying to get it with the below DAX command but the value is populating "Blank" when I pull it in a card.
Solved! Go to Solution.
Try this you should have the value :
nextclosingdate=
var nextyear=year(today())+1
var datemaxmarch=date(nextyear,3,1)
return
datemaxmarch-1
but the much simple would be to create the dfate on your date table with calendar function
Try this you should have the value :
nextclosingdate=
var nextyear=year(today())+1
var datemaxmarch=date(nextyear,3,1)
return
datemaxmarch-1
but the much simple would be to create the dfate on your date table with calendar function
i
If you have a date table with dates up to end of feb 2023just do this :
nextclosingdate=
var nextyear=year(today())+1
return
calculate(max(Date[date],Date[Year]=nextyear&&Month=2)
Hi JamesFr06,
Thanks for your quick response. I don't have dates going till Feb 2023. Reason why I'm getting a blank value in the card. Is there a way where I can get the result without depending on any column?
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 | |
| 21 | |
| 20 | |
| 18 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 38 | |
| 31 | |
| 27 |