Forum Discussion

Donny620's avatar
Donny620
Icon for Helper I rankHelper I
3 years ago
Solved

Difference in date between two columns in a measure?

Hello!   I have an Excel version of this that I am trying to duplicate in PBI.  I have three date columns Date 1a(stock date), Date1b(different stock date), and Date 2(sell date).  I want to use Da...
  • parry2k's avatar
    3 years ago

    Donny620 you can add a measure like this:

     

     

    Trimmed Aging = 
    VAR __Date1 = COALESCE ( SELECTEDVALUE ( Table[Date1] ), Table[Date2] )
    VAR __Date2 = SELECTEDVALUE ( Table[Date2] )
    VAR __Diff = DATEDIFF ( __Date1, __Date2, DAYS )
    RETURN
    IF ( __Diff < 5, 5, IF ( __Diff > 540, 540, __Diff ) )