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
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
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.

Top Solution Authors