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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Team,
I want to calculate how many months left till end of FY.
eg: current month is december , fiscal year staring from April so i need the value 3 because fy end on March 24.
please help me on the dax calculation to get the value
Solved! Go to Solution.
@sunil222
Create the following meaure:
Month Count =
VAR __Mon = MONTH(MAX( 'Dates'[Date] ) )
RETURN
IF( __Mon > 3 , 15 - __Mon , 3 - __Mon)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thank you for sharing this type of question
@sunil222
Create the following meaure:
Month Count =
VAR __Mon = MONTH(MAX( 'Dates'[Date] ) )
RETURN
IF( __Mon > 3 , 15 - __Mon , 3 - __Mon)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
I need the answer as 3 , now december value is 3 , i can use this value in another dax calculation.
as per your logic iam getting
@sunil222
You need to create a measure with the code thatI shared with you
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group