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
Chris_McD
Regular Visitor

Delta Values from Previous Day Using Multiple Columns

Hello,

 

I have searched delta values for previous days but found an answer yet.

 

I am looking to produce dynamic delta values for specific items in tanks. The desired column is in blue below (outlined in green):

 

DeltaVolumesPowerBIexample.jpg

 

The delta value reflects the difference between the current value and the previous day’s for the product in the specific tank.  For example, ‘PeanutButter’ in ‘TK1’ increases by 200 from 100 to 300 (300-100 = 200). The ‘Delta from Previous Day’ column needs only to reflect the previous day’s value.

 

The ‘Data Connectivity Mode’ is ‘Import’ on connected databases.

 

Thank you for your help,

 

Chris  

1 ACCEPTED SOLUTION
Anonymous
Not applicable

So... I can't see why there would be a ciruclar dependency error, but my expression isn't QUITE correct either, please update, and maybe do a "plz work, plz work, plz work" dance 🙂

VOLUME_DELTA =

VAR Yesterday = MyTable[StartTime] - 1

VAR MyMaterial = MyTable[Material Number]

VAR MyElement = MyTable[Element]

RETURN
    MyTable[Volume] -

    CALCULATE(VALUES(MyTable[Volume]),
            FILTER(ALL(MyTable),
                        MyTable[StartTime] = Yesterday &&

                        MyTable[Material Number] = MyMaterial &&

                        MyTable[Element] = MyElement
            )

     )

View solution in original post

7 REPLIES 7
garcia
Frequent Visitor

Try this measure:

 

Delta Measure = SUM(MyTable[Volume]) - CALCULATE(SUM(MyTable[Volume]),DATEADD(MyTable[StartTime],-1,DAY))

 

Then just create a Table or Matriz Visualization and done!

Anonymous
Not applicable

Well, this makes sense to me... try it 🙂

 

VAR Yesterday = MyTable[StartTime] - 1

VAR MyMaterial = MyTable[Material Number]

VAR MyElement = MyTable[Element]

RETURN
    VALUES(MyTable[Volume]) -

    CALCULATE(VALUES(MyTable[Volume]),
            FILTER(MyTable,
                        MyTable[StartTime] = Yesterday &&

                        MyTable[Material Number] = MyMaterial &&

                        MyTable[Element] = MyElement
            )

     )

 

There was a circular dependency error when I put 'VOLUME_DELTA = ' at the beginning of the formula you sent to me. Please let me know if there is a step that I am missing or something else that I need to do with my data to rememdy this challenge:

 

 

VOLUME_DELTA =

VAR Yesterday = MyTable[StartTime] - 1

VAR MyMaterial = MyTable[Material Number]

VAR MyElement = MyTable[Element]

RETURN
    VALUES(MyTable[Volume]) -

    CALCULATE(VALUES(MyTable[Volume]),
            FILTER(MyTable,
                        MyTable[StartTime] = Yesterday &&

                        MyTable[Material Number] = MyMaterial &&

                        MyTable[Element] = MyElement
            )

     )

 

Thank you,

 

Chris

Anonymous
Not applicable

Man, I am just CURSED by circular references lately.   Do you have OTHER calculated columns in the table?  Do you need them? 🙂

 

Read here about the interaction between multiple calc columns:

https://www.sqlbi.com/articles/understanding-circular-dependencies/

 

The other calculated columns that were added have now been removed and the circular dependency is still registering as the error.

 

I appreciate your help.

 

Chris

Anonymous
Not applicable

So... I can't see why there would be a ciruclar dependency error, but my expression isn't QUITE correct either, please update, and maybe do a "plz work, plz work, plz work" dance 🙂

VOLUME_DELTA =

VAR Yesterday = MyTable[StartTime] - 1

VAR MyMaterial = MyTable[Material Number]

VAR MyElement = MyTable[Element]

RETURN
    MyTable[Volume] -

    CALCULATE(VALUES(MyTable[Volume]),
            FILTER(ALL(MyTable),
                        MyTable[StartTime] = Yesterday &&

                        MyTable[Material Number] = MyMaterial &&

                        MyTable[Element] = MyElement
            )

     )

This newer version worked.

 

My dance came after.

 

Thanks for the help.

 

Chris

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.