Skip to main content
Skip table of contents

Cache

Caches the result of the calculation in memory for query in execution. Can be useful when same calculation is repeated during the report more than once.

Syntax

CODE
Cache(Expression)

Examples


A report has a measure that for calculation uses the result of a previously calculated measure. Using cache would store the first time calculation result in memory and for the next measure would be used to optimize the performance of the report.

Open issues are calculated much faster using the cache function as the query should go through all time members and repeat the mathematical expression to each of them.

CODE
Cache(
  NonZero(Sum(PreviousPeriods([Time].CurrentHierarchyMember),
  Cache([Measures].[Issues created]
    - [Measures].[Issues resolved])
  ))
  + [Measures].[Issues created]
  - [Measures].[Issues resolved]
 )
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.