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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello PBI experts,
I need help with creating a measure for last month of last fiscal year which will be compared with current month .
For instance, Our fiscal year is April to March
for May-2023 , revenue will be compared with Mar-2022. Similarly for April-2024, revenue will be compared with Mar-2023
Let me know if you need more explaination on my request here.
Thanks
Komal
@KC03 , Try measure like
Last month last FY =
var _max = if(isfiltered('Date'),MAX( 'Date'[Date]) , today())
var _min = if(month(_max) <4, Date(year(_max)-1,4,1) ,Date(year(_max),4,1) )
var _max1= _min -1
var _min1 = eomonth(_max1,-1)+1
return
calculate([net],DATESBETWEEN('Date'[Date],_min1,_max1))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!