Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Returns number of days from first date to second date.

...

 DateDiffDays(from_date, to_date)

Arguments

from_date
MDX expression that returns a date.
to_date
MDX expression that returns a date.

Examples

Following example calculates how many days ago was the invoice created.

DateDiffDays([Invoice].CurrentMember.getProperty('Invoice date'), Now())

...

NonZero(
  Count(
    Filter(
	  Descendants([Issue].CurrentMember, [Issue].[Issue]),
	  [Measures].[Issues due] > 0 AND
      DateDiffDays([Issue].CurrentMember.get('Created at'),
        Now()) >= 14 AND
      DateDiffDays([Issue].CurrentMember.get('Created at'),
        Now()) < 30
)))

See also

...