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
srb803
Frequent Visitor

Same Day Last Year Sales in calculated column

Hi - I need to calculate same day last year's sales in a calculated column. Any help on this is highly appreciated.

Using first three column, I need to create a calculated column to have output column as Calculated Column.

DateProductSales AmountOutput Column
1-Jan-19A98370
2-Jan-19A57840
3-Jan-19B169010
4-Jan-19B183600
5-Jan-19C175350
1-Jan-20A66499837
2-Jan-20A67685784
3-Jan-20B2462516901
4-Jan-20B652518360
5-Jan-20C1937917535



1 ACCEPTED SOLUTION
nandukrishnavs
Super User
Super User

@srb803 

 

Try the below DAX

Same Day Last Year =
VAR _previousYearDate =
    DATE ( YEAR ( [Date] ) - 1, MONTH ( [Date] ), DAY ( [Date] ) )
VAR _result =
    MAXX (
        FILTER (
            'Table',
            'Table'[Product]
                = EARLIER ( 'Table'[Product] )
                && [Date] = _previousYearDate
        ),
        [Sales Amount]
    )
RETURN
    _result

nandukrishnavs_0-1696934559658.png

 


Regards,
Nandu Krishna

View solution in original post

2 REPLIES 2
srb803
Frequent Visitor

Thank you for this.

nandukrishnavs
Super User
Super User

@srb803 

 

Try the below DAX

Same Day Last Year =
VAR _previousYearDate =
    DATE ( YEAR ( [Date] ) - 1, MONTH ( [Date] ), DAY ( [Date] ) )
VAR _result =
    MAXX (
        FILTER (
            'Table',
            'Table'[Product]
                = EARLIER ( 'Table'[Product] )
                && [Date] = _previousYearDate
        ),
        [Sales Amount]
    )
RETURN
    _result

nandukrishnavs_0-1696934559658.png

 


Regards,
Nandu Krishna

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.