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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Anonymous
Not applicable

show blank when calculate previous fiscal year

Hi All, I have a calendarweek table where they a fiscal year column , have a fiscal year filter and the user should see the selected year and previous fiscal year sales in a table, got blank when it shows previous years sales, my measure:

Previous Fiscal sales =
VAR currentFYYear = SELECTEDVALUE ( DimCalendarWeek[Fiscal Year Number])
VAR _PreviousFiscalYear = currentFYYear-1
return
CALCULATE (
        [sales],
        FILTER(DimCalendarYearWeek,
            DimCalendarYearWeek[Fiscal Year ] = _PreviousFiscalYear)
            ,FILTER(DimCategory, DimCategory[Sales Status] = "new")
    )
1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

The solution is to create a separate table with the field [Fiscal Year Number]. The Fiscal Year Number field of the new table is then filtered as a slicer field. Below is the solution steps based on simple sample data.

For example, if I select 2022, it should display data for 2021.

vstephenmsft_1-1694412028693.png

 

1.Create a separate table.

Table = DISTINCT('DimCalendarWeek'[Fiscal Year Number])

vstephenmsft_2-1694412038041.png

2.Create a slicer, the field is from the new separate table.

vstephenmsft_3-1694412110573.png

3.Create a measure. The fields in SELECTEDVALUE() function need to be modified to the fields of the new table. Nothing else needs to be changed, but I don't have a DimCategory table in the example, so I changed it.

Previous Fiscal sales = 
VAR currentFYYear = SELECTEDVALUE ('Table'[Fiscal Year Number])
VAR _PreviousFiscalYear = currentFYYear-1
return
CALCULATE (
       SUM(DimCalendarWeek[Sale]),
        FILTER('DimCalendarWeek',
            'DimCalendarWeek'[Fiscal Year Number] = _PreviousFiscalYear)
          
    )

vstephenmsft_4-1694412413484.png

Best Regards,

Stephen 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-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

The solution is to create a separate table with the field [Fiscal Year Number]. The Fiscal Year Number field of the new table is then filtered as a slicer field. Below is the solution steps based on simple sample data.

For example, if I select 2022, it should display data for 2021.

vstephenmsft_1-1694412028693.png

 

1.Create a separate table.

Table = DISTINCT('DimCalendarWeek'[Fiscal Year Number])

vstephenmsft_2-1694412038041.png

2.Create a slicer, the field is from the new separate table.

vstephenmsft_3-1694412110573.png

3.Create a measure. The fields in SELECTEDVALUE() function need to be modified to the fields of the new table. Nothing else needs to be changed, but I don't have a DimCategory table in the example, so I changed it.

Previous Fiscal sales = 
VAR currentFYYear = SELECTEDVALUE ('Table'[Fiscal Year Number])
VAR _PreviousFiscalYear = currentFYYear-1
return
CALCULATE (
       SUM(DimCalendarWeek[Sale]),
        FILTER('DimCalendarWeek',
            'DimCalendarWeek'[Fiscal Year Number] = _PreviousFiscalYear)
          
    )

vstephenmsft_4-1694412413484.png

Best Regards,

Stephen 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 , that works fine. I have another issue, now i want to use the same filter (fiscal year) but i want display year month that belongs to that fiscal year, how should i do?

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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