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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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
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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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