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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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