Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Unknowncharact0
Regular Visitor

Dynamic Fiscal Year

Hello,

 

I am trying to create a dynamic count # of cases closed in a fiscal year (October to September)

 

Current Fiscal Year Count =
VAR CurrentDate = TODAY()
VAR CurrentFiscalYear =
IF(MONTH(CurrentDate) >= 10, YEAR(CurrentDate), YEAR(CurrentDate) - 1)
RETURN
CALCULATE(
COUNT('Fact Table'[Case #]),
FILTER('Fact Table', YEAR('Fact Table'[Date Case Closed]) = CurrentFiscalYear))

 

This DAX does not seem to work correctly, can anyone help?

1 ACCEPTED SOLUTION

is this what you want?

Count of Case for 2023 = 
VAR _year=CALCULATE(max('DIM Calendar'[Fiscal Year]),ALL('DIM Calendar'))-1
return 

	CALCULATE(COUNT('Fact Table'[Case]),
	FILTER(all('DIM Calendar'),'DIM Calendar'[Fiscal Year]= _year))

Count of Case for 2024 = 
VAR _year=CALCULATE(max('DIM Calendar'[Fiscal Year]),ALL('DIM Calendar'))
return 

	CALCULATE(COUNT('Fact Table'[Case]),
	FILTER(all('DIM Calendar'),'DIM Calendar'[Fiscal Year]= _year))




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

5 REPLIES 5
Unknowncharact0
Regular Visitor

Thank you so much, I appologize in my response delay!

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




ryan_mayu
Super User
Super User

@Unknowncharact0 

could you pls proivde some sample data and expected output?

maybe you can create a date table and create a column

Column = if(month('Table'[Date]) in {10,11,12},YEAR('Table'[Date]),year('Table'[Date])-1)

11.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




https://1drv.ms/u/s!Anb0OMw34A1igQDHuXJI-0W4wixD?e=R5R5Bx

 

Thank you so much for your reply! See if this works for PBI sample, the idea is that I want to have a KPI card that will compare current year to previous year count and it rolls over automatically at the beginning of new year instead of me adjusting the measure.

is this what you want?

Count of Case for 2023 = 
VAR _year=CALCULATE(max('DIM Calendar'[Fiscal Year]),ALL('DIM Calendar'))-1
return 

	CALCULATE(COUNT('Fact Table'[Case]),
	FILTER(all('DIM Calendar'),'DIM Calendar'[Fiscal Year]= _year))

Count of Case for 2024 = 
VAR _year=CALCULATE(max('DIM Calendar'[Fiscal Year]),ALL('DIM Calendar'))
return 

	CALCULATE(COUNT('Fact Table'[Case]),
	FILTER(all('DIM Calendar'),'DIM Calendar'[Fiscal Year]= _year))




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.