Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Max Date with USERELATIONSHIP

Hello, 

 

I have a problem with a measure in DAX that brings me the Max date of my Date table, a simple one MAX(DimTime[Date]), the measure works fine, but from my Fact table I have 2 relationships to the DimTime, one is active and the other one is inactive, in my Fact table the column with the active relationship is complete i doesn´t have nulls, but the one inactive has nulls values. For knowledge, I know the max date with the active relationship is '01-15-2018' but if i use the other relationship the max date is '01-14-2018', unfortunately this measure CALCULATE(MAX(DimTime[Date]),USERELANTIONSHIP(DimTime[Date],FactTable[Date2]), for reasons that I don't understand this measure show '01-15-2018' when i should be '01-14-2018'.

 

Any tips why is this happening?

 

Thanks in advanced.

  • All of your measures are showing the max date in the calendar table. This has nothing to do with the fact table. If you want the max date in the fact table, then refer to the column in the fact table. 

3 Replies

  • MattAllington's avatar
    MattAllington
    Community Champion

    All of your measures are showing the max date in the calendar table. This has nothing to do with the fact table. If you want the max date in the fact table, then refer to the column in the fact table. 

  • v-lili6-msft's avatar
    v-lili6-msft
    Community Support

    hi, Anonymous

    You can use this formula as below:

    New Unactive = CALCULATE(MAX(FactTable[Date2]),USERELATIONSHIP(DimTime[Date],FactTable[Date2]))

    Result:

    Best Regards,

    Lin

  • Hi,

     

    Does this work?

     

    =CALCULATE(MAX(FactTable[Date2]),USERELANTIONSHIP(FactTable[Date2],DimTime[Date]))