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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
clubspec
Helper III
Helper III

Tricky SUM with two tables

Hi Gurus,

I have two tables like in the picture.  There is a relationship between 'Calendar'[Date] and 'Asset Register'[Start Date].

Now I want to do a sum for [Monthly Depreciation] from the Asset Register table, however use the [Year] and [Month] from the 'Calendar' table as the row element to display the result.  The requirement is simple, sum rows in column 'Asset Register'[Monthly Depreciation] if 'Calendar'[Year] and [Month] (e.g. 1 Jan 23) is between the 'Asset Register'[Start Date] and [End Date].

I have tried so many dax but couldn't work out the correct answer (also in the picture below).  I know the relationship cause part of the problem but I cannot remove it because there are other measures using it.

Please help...

clubspec_0-1684470231182.png

 

1 ACCEPTED SOLUTION
PaulOlding
Solution Sage
Solution Sage

Hi @clubspec 

You can use the CROSSFILTER function to remove the relationship just for this measure.

Something like this:

Monthly Dep = 
VAR _MaxDate = MAX('Date'[Date])
VAR _Result = 
CALCULATE(
    SUM('Asset Register'[Monthly depreciation]),
    CROSSFILTER('Date'[Date], 'Asset Register'[Start Date], None),
    'Asset Register'[Start Date] <= _MaxDate,
    'Asset Register'[End Date] >= _MaxDate
)
RETURN
    _Result

PaulOlding_0-1684513255208.png

 

View solution in original post

4 REPLIES 4
tamerj1
Super User
Super User

Hi @clubspec 

please try

Total Depreciation =
VAR CurrentDate =
MIN ( 'Calendar'[Date] )
VAR T1 =
CALCULATETABLE ( 'Asset Register', ALL ( 'Calendar' ) )
VAR T2 =
FILTER (
T1,
'Asset Register'[Start Date] <= CurrentDate
&& 'Asset Register'[End Date] >= CurrentDate
)
RETURN
SUMX ( T3, 'Asset Register'[Monthly Depreciation] )

PaulOlding
Solution Sage
Solution Sage

Hi @clubspec 

You can use the CROSSFILTER function to remove the relationship just for this measure.

Something like this:

Monthly Dep = 
VAR _MaxDate = MAX('Date'[Date])
VAR _Result = 
CALCULATE(
    SUM('Asset Register'[Monthly depreciation]),
    CROSSFILTER('Date'[Date], 'Asset Register'[Start Date], None),
    'Asset Register'[Start Date] <= _MaxDate,
    'Asset Register'[End Date] >= _MaxDate
)
RETURN
    _Result

PaulOlding_0-1684513255208.png

 

Thank you so much Paul, it is working 🙂

some_bih
Super User
Super User

Hi @clubspec 

I understand that your data, at least from picture, for Calendar / Date Table seems find (one day / date as unique and that table as Date table featured in PowerBI).

Still to "leverage" PowerBI features for calculating  / reporting MTD amounts your data should be on respective granularity, meaning one single date: day or monthly level only. It will be great if you already have or you could have that level of data per asset item. It is a bit confusing seeing your column "Monthly Depreciation" and next two dates like period. It could be that you need to use PQ transformation or somehow prepare that to be with just one monthly dates / amounts, before any DAX. I do not know it by heart :). I hope this help.





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

Proud to be a Super User!






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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.