Support center for flex.bi version 4.0

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Returns if a date is between other two dates.

Syntax

 DateBetween(date, from_date , to_date)

Arguments

dateMDX expression that returns a date
from_dateMDX expression that returns a date
to_dateMDX expression that returns a date

You can use also a string expression, that can be parsed with DateParse, as any date argument.

Examples

DateBetween(
  [Issue].CurrentHierarchyMember.Get('Created at'),
  '3 month ago',
  Now()
)

The above formula will be true if an issue is created within the last three months.

See also

  • No labels