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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
ajinwlee
Frequent Visitor

How to get difference of sold qty each item compared to previous sold date

Hello,

 

I would like to get difference of sold qty each item compared to previous sold date.

 

like follwing tables.

 

Thank you,

 

ajinwlee_0-1682853861840.png

 

 

1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

Hi @ajinwlee .
Try to dd a column with attached Dax formula :

diff row =
[Value]
    - LOOKUPVALUE (
        'Table'[Value],
        'Table'[Category], [Category],
        'Table'[Date],
            CALCULATE (
                MAX ('Table'[Date] ),
                FILTER (
                    'Table',
                    'Table'[Category] = EARLIER ( 'Table'[Category])
                        &&'Table'[Date]  < EARLIER ( 'Table'[Date] )
                        && 'Table'[Date] <> BLANK ()
                )
            )
    )
 
Ritaf1983_0-1682908130706.pngRitaf1983_1-1682908330054.png

 

 

Link To Sample File 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

3 REPLIES 3
ajinwlee
Frequent Visitor

Thanks a lot.  It helps me to understand DAX functions.

I was glad to be of assistance 🙂

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile
Ritaf1983
Super User
Super User

Hi @ajinwlee .
Try to dd a column with attached Dax formula :

diff row =
[Value]
    - LOOKUPVALUE (
        'Table'[Value],
        'Table'[Category], [Category],
        'Table'[Date],
            CALCULATE (
                MAX ('Table'[Date] ),
                FILTER (
                    'Table',
                    'Table'[Category] = EARLIER ( 'Table'[Category])
                        &&'Table'[Date]  < EARLIER ( 'Table'[Date] )
                        && 'Table'[Date] <> BLANK ()
                )
            )
    )
 
Ritaf1983_0-1682908130706.pngRitaf1983_1-1682908330054.png

 

 

Link To Sample File 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

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 MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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