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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Calculatiing a Sum for the Current Fiscal Year and Previous Fiscal Year

I am new to this blog.  I have searched everywhere for a solution and cannot find one.  My issue I need to calculate the Sum of dollar value for Current Fiscal year, Previous Fiscal Year and Future Fiscal Year.  Here is aan example of my Calculation. 

 

FY 19 $ Value = Calculate(Sum[Dollar Value],'Complete Data' [Fiscal Year] - 1) 

Here are the values in the fiscal year column: 

2017

2018

2019

2020

2021

2022

This does not work as the fiscal year column is a text field.  When I convert to a whole Number the fiscal year calculation does not work. 

 

Any help would be greaty appreciated.  Please move this to the correct area as I cant figure out how to get this post there. 

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

Create three measures using dax below:

Previous Fiscal Year Total = CALCULATE(SUM('Complete Data'[Dollar Value]), FILTER('Complete Data', 'Complete Data'[Fiscal Year] = YEAR(TODAY()) - 1))

Current Fiscal Year Total = CALCULATE(SUM('Complete Data'[Dollar Value]), FILTER('Complete Data', 'Complete Data'[Fiscal Year] = YEAR(TODAY())))

Future Fiscal Year Total = CALCULATE(SUM('Complete Data'[Dollar Value]), FILTER('Complete Data', 'Complete Data'[Fiscal Year] = YEAR(TODAY()) + 1))

Capture.PNG 

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

Create three measures using dax below:

Previous Fiscal Year Total = CALCULATE(SUM('Complete Data'[Dollar Value]), FILTER('Complete Data', 'Complete Data'[Fiscal Year] = YEAR(TODAY()) - 1))

Current Fiscal Year Total = CALCULATE(SUM('Complete Data'[Dollar Value]), FILTER('Complete Data', 'Complete Data'[Fiscal Year] = YEAR(TODAY())))

Future Fiscal Year Total = CALCULATE(SUM('Complete Data'[Dollar Value]), FILTER('Complete Data', 'Complete Data'[Fiscal Year] = YEAR(TODAY()) + 1))

Capture.PNG 

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Thanks for your assistance!  I had to do minor tweaking but it worked! 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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