Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago

Last year same month with slicer

I'm trying to get my sales for the same month last year but specific to the slicer. When I use this formula:

 

 
Last Year Same Month = 
CALCULATE (
    SUM ('Sell In'[Sales]),
    FILTER (
        ALLSELECTED ( 'Sell In'),
        YEAR ( 'Sell In'[Month].[Date] )
            = YEAR ( MAX ( 'Sell Out'[Date].[Date] ) ) - 1
            && MONTH ( 'Sell In'[Month].[Date]) = MONTH ( MAX ( 'Sell Out'[Date] ) )
    )
)
I get a blank. If I edit the interactions and make it independent of the slicer (with my date) it ends up working perfectly. But then if I choose a different date, it won't update.
 
Any ideas please?

5 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    HI Anonymous ,

    I'd like some sample data to help us clarify your scenario.

    How to Get Your Question Answered Quickly

    BTW, you can also try to remove suffix and use original date fields as condition for calculate:

    Last Year Same Month =
    CALCULATE (
        SUM ( 'Sell In'[Sales] ),
        FILTER (
            ALLSELECTED ( 'Sell In' ),
            YEAR ( 'Sell In'[Month] )
                = YEAR ( MAX ( 'Sell Out'[Date] ) ) - 1
                && MONTH ( 'Sell In'[Month] ) = MONTH ( MAX ( 'Sell Out'[Date] ) )
        )
    )

    Regards,

    Xiaoxin Sheng

    • Anonymous's avatar
      Anonymous
      Not applicable

      Is there no way to create a column that calculates the previous year's same month column? So I can create a column where it shows the previous year's month but then want something like this:

       

       

      And the do a sumifs formula to get the sales for each product:

       

       

       

       

       

      • Anonymous's avatar
        Anonymous
        Not applicable

        HI Anonymous ,

        You can try to use following calculated column formula if it works for your requirement:

        Last Year Same Month =
        CALCULATE (
            SUM ( 'Table'[Sales] ),
            FILTER (
                ALL ( 'Table' ),
                YEAR ( 'Table'[Month] )
                    = YEAR ( EARLIER ( 'Table'[Month] ) ) - 1
                    && MONTH ( 'Table'[Month] ) = MONTH ( EARLIER ( 'Table'[Date] ) )
                    && Table[Product] = EARLIER ( Table[Product] )
            )
        )

        If above not help, please share a pbix file with some sample data for test.

        Regards,
        Xiaoxin Sheng