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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
mpenkin
New Member

Calculate value of the previous available day for each data item (multiple items per date)

Hi everyone,

 

I have been looking for a solution that would look up the table by the name of an account and create a column with their values for the previous available reporting date (T-1). This would enable to track the change between every T-day and T-1 day.

 

Report dayAccountT ValueT-1 Value
10.05.2024ABC1000
10.05.2024DEF3000
10.05.2024XYZ2500
14.05.2024ABC50100
14.05.2024DEF380300
14.05.2024XYZ210250
15.05.2024ABC15050
15.05.2024DEF420380
15.05.2024XYZ200210
16.05.2024ABC170150
16.05.2024DEF400420
16.05.2024XYZ230200

 

I tried to use the following measure but it will be always looking into the second to last day inputted regardless of the slicer selection:

 

T-1 Value =
VAR MaxDate = CALCULATE(MAX('Table'[Report Day]), ALL('Table'[Report Day]))
VAR PreviousDate = CALCULATE(MAX('Table'[Report Day]), 'Table'[Report Day] < MaxDate)
RETURN
CALCULATE(
    SUM('Table'[Value]), 'Table'[Report Day] = PreviousDate
)
 
Would you have any suggestions for a formula that would look into the previous available date for every data line?
If a new account appears the T-1 should naturally be 0.
 
Thank you!
1 ACCEPTED SOLUTION

Hi @mpenkin below is v2 version for calculated column as before.

Outuput as yours

 

T -1 value formula v2 =
--adjust your Table name
VAR _currentRowDate = 'Table'[Report day]
VAR _current_account='Table'[Account Name]
VAR _current_cashtype='Table'[Cash Type]
VAR _previousRowDate =
    CALCULATE (
        MAX ( 'Table'[Report day] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Report day] < _currentRowDate && 'Table'[Account Name]=_current_account && 'Table'[Cash Type]=_current_cashtype)
    )
VAR _result=
    IF (
        NOT ISBLANK ( _previousRowDate ),
        CALCULATE (
            MAX ( 'Table'[T Value] ),
            FILTER ( ALL ('Table' ), 'Table'[Report day] = _previousRowDate && 'Table'[Account Name]=_current_account && 'Table'[Cash Type]=_current_cashtype)
        )
    )
RETURN _result
 
Output
some_bih_0-1715839042723.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






View solution in original post

7 REPLIES 7
some_bih
Super User
Super User

Zdravo @mpenkin 

It is not clear based on table overview that acvount ABC is deactivated or deposit is matured.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






Hi @some_bih,

 

I presume, additional data points would be required for that?

Could you let me know if whatever does not find the match can be calculated separately in another measure?

Thank you!

Hi, more details is needed , like your model, relationships...





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






some_bih
Super User
Super User

Hi @mpenkin you want to get values in column T-1 Value for previous date per given Account?

If yes, please create calculate column as in example below 

 

T -1 value formula =
--adjust your Table name
VAR _currentRowDate = 'Table'[Report day]
VAR _current_account='Table'[Account]
VAR _previousRowDate =
    CALCULATE (
        MAX ( 'Table'[Report day] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Report day] < _currentRowDate && 'Table'[Account]=_current_account)
    )
VAR _result=
    IF (
        NOT ISBLANK ( _previousRowDate ),
        CALCULATE (
            MAX ( 'Table'[T_Value] ),
            FILTER ( ALL ('Table' ), 'Table'[Report day] = _previousRowDate && 'Table'[Account]=_current_account)
        )
    )
RETURN _result
 Output
some_bih_0-1715778877032.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






Hi, @some_bih 

 

Thank you very much for the solution. I think we are on the right track.

I have realized something when I was trying to verify the values - some of the account names can repeat if there are different Cash Types (see the table below). Would you mind letting me know how to segregate the T-1 value based on both the Account Name and Cash Type data points?

 

Report dayCash TypeAccount NameT ValueT-1 Value
10.05.2024CashABC1000
10.05.2024DepositABC100
10.05.2024CashXYZ2500
14.05.2024CashABC50100
14.05.2024DepositABC2010
14.05.2024CashXYZ210250
14.05.2024BorrowingXYZ-150
15.05.2024CashABC15050
15.05.2024DepositABC1520
15.05.2024CashXYZ200210
15.05.2024BorrowingXYZ-20-15
16.05.2024CashABC170150
16.05.2024DepositABC1815
16.05.2024CashXYZ230200
16.05.2024BorrowingXYZ-10-20

 

And one more question: As your measure creates a column, I was not able to subtract the T value from T-1 value which would show the difference - should I create a column copying the T value to enable that?

 

Thank you!

 

Hi @mpenkin below is v2 version for calculated column as before.

Outuput as yours

 

T -1 value formula v2 =
--adjust your Table name
VAR _currentRowDate = 'Table'[Report day]
VAR _current_account='Table'[Account Name]
VAR _current_cashtype='Table'[Cash Type]
VAR _previousRowDate =
    CALCULATE (
        MAX ( 'Table'[Report day] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Report day] < _currentRowDate && 'Table'[Account Name]=_current_account && 'Table'[Cash Type]=_current_cashtype)
    )
VAR _result=
    IF (
        NOT ISBLANK ( _previousRowDate ),
        CALCULATE (
            MAX ( 'Table'[T Value] ),
            FILTER ( ALL ('Table' ), 'Table'[Report day] = _previousRowDate && 'Table'[Account Name]=_current_account && 'Table'[Cash Type]=_current_cashtype)
        )
    )
RETURN _result
 
Output
some_bih_0-1715839042723.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






Zdravo @some_bih,

 

Thank you for your swift reply! I have been testing your solution this whole morning to validate the data. It successfully matches values for the previous day with the items on the next day based on the name of the Account Name, Cash Types.

 

There is however one weak spot - if a certain item exhisted on T-1 and is not present on T-day (say an account was deactivated or a deposit has matured), the measure gets confused and disregards the missing items.

 

I wonder if the formula can be updated to mark the T-1 value even for the missing items on a T-day or calculated separately as amounts that did not find their matches.

 

Please see below an update sample where I also introduced the Deal Reference to track the deposits and Borrowings. Let's say that on 17.05.2024:

- Account ABC is deactivated so the T Value should be 0 and T-1 Value would be 170

- Deposit DP1 of ABC has matured (T Value = 0, T-1 Value =18)

- Borrowing BW1 for XYZ has been settled (T Value = 0, T-1 Value =-10)

 

Thank you very much for your efforts because for the existing items formula is just spot on!

 

Report dayDeal RefCash TypeAccount NameT ValueT-1 Value
10.05.2024 CashABC1000
10.05.2024DP1DepositABC100
10.05.2024 CashXYZ2500
14.05.2024 CashABC50100
14.05.2024DP1DepositABC2010
14.05.2024 CashXYZ210250
14.05.2024BW1BorrowingXYZ-150
15.05.2024 CashABC15050
15.05.2024DP1DepositABC1520
15.05.2024 CashXYZ200210
15.05.2024BW1BorrowingXYZ-20-15
16.05.2024 CashABC170150
16.05.2024DP1DepositABC1815
16.05.2024 CashXYZ230200
16.05.2024BW1BorrowingXYZ-10-20
17.05.2024 CashXYZ230200
17.05.2024BW2BorrowingABC-1000
17.05.2024DP2DepositXYZ500

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Kudoed Authors