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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 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.