Capture date from Date Slicer

@axaeffect,

OK, two major problems with your Aging measure:

  1. because you are changing filter context (to ALLSELECTED), you need to wrap this in a CALCULATE statement; and
  2. if I understand what you’re trying to do here correctly, SUMX is not needed.

Here’s the rewritten measure:

Aging = 
    CALCULATE(
        DATEDIFF(
            SELECTEDVALUE( FactInternetSales[DueDate] ),
            [SelectedDate],
            DAY
        ),
        ALLSELECTED(
            DimDate[FullDateAlternateKey]
        )
    ) 

As you can see from the screenshot below, this works fine except for the fact that it doesn’t produce a grand total, because there’s no evaluation context for the total line.

image

In order to get the proper grand total, you need a more complex version of the same measure:

Aging with Total = 

VAR VirtualTable =
    CALCULATETABLE(
        ADDCOLUMNS(
            FactInternetSales,
            "AgingVirt", [Aging]
        ),
        ALLSELECTED( DimDate[FullDateAlternateKey] )
    )
RETURN
IF( 
    HASONEVALUE( FactInternetSales[SalesOrderNumber] ),
    [Aging],
    SUMX (
        VirtualTable,
        [AgingVirt]
    )
)

For more information on how to get correct totals, check out this recent post which has links to a number of excellent videos by Sam explaining this issue in depth.

Full solution file attached below.

Hope this is helpful.