Hello,
I need to update a subset of specific dimension when I finish loading data into cube (using TI process). I want this subset to include all N level elements from this dimension. How can I do that?
TI: Update subset after cube load
- qml
- MVP
- Posts: 1098
- Joined: Mon Feb 01, 2010 1:01 pm
- OLAP Product: TM1 / Planning Analytics
- Version: 2.0.9 and all previous
- Excel Version: 2007 - 2016
- Location: London, UK, Europe
Re: TI: Update subset after cube load
The best approach is to create a Dynamic Subset with the following MDX code
This subset will not need any maintenance, it will always be automatically up to date.
Code: Select all
{TM1FILTERBYLEVEL( {TM1SUBSETALL( [Dimension] )}, 0)}
Kamil Arendt
-
- Posts: 42
- Joined: Wed Nov 10, 2010 12:35 pm
- OLAP Product: Cognos 8 BI
- Version: 9.5.1
- Excel Version: Excel 2007
Re: TI: Update subset after cube load
I haven't fought of that. Thanks!qml wrote:The best approach is to create a Dynamic Subset with the following MDX codeThis subset will not need any maintenance, it will always be automatically up to date.Code: Select all
{TM1FILTERBYLEVEL( {TM1SUBSETALL( [Dimension] )}, 0)}