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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

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
Community Champion
Community Champion

@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
Community Champion
Community Champion

@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
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.