Hi together,
I've a problem with feeding cells and need help to find the correct feeder. Example:
My Cube has 2 Dimensions, Measures und WS_Time.
The Time Dimension (WS_Time) has 3 n-elements:
1. 20200100
2. 20200200
3. Sum 2020
and the rule is like:
['measure x'] = IF( SUBST( DIMNM( 'WS_Zeit', DIMIX( 'WS_Zeit', !WS_Zeit ) ), 7, 2 ) @= '00',
DB('Cube',!Measures,'Sum ' |SUBST( DIMNM( 'WS_Zeit', DIMIX( 'WS_Zeit', !WS_Zeit ) ), 1, 4 ) ),
continue;
How can I feed this rule properly?
Many thanks!
Feeder from one n-elenemt to many n-elemets
-
- MVP
- Posts: 3234
- Joined: Mon Dec 29, 2008 6:26 pm
- OLAP Product: TM1, Jedox
- Version: PAL 2.1.5
- Excel Version: Microsoft 365
- Location: Brussels, Belgium
- Contact:
Re: Feeder from one n-elenemt to many n-elemets
Hello,
- Why do you duplicate the same (yearly) value in the months ?
- you can remove dimnm, dimix. Rules will just take the element principal name by default.
- Why do you duplicate the same (yearly) value in the months ?
- you can remove dimnm, dimix. Rules will just take the element principal name by default.
Best regards,
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly
-
- Posts: 18
- Joined: Thu Jan 02, 2020 3:05 pm
- OLAP Product: TM1
- Version: 10.2.2
- Excel Version: Excel 365
Re: Feeder from one n-elenemt to many n-elemets
Hi,
the value there can be a general input parameter and then should be passed to the other elements. I know, there can be other possibilities, but this way is given for me.
Thanks for the advice with dimnm & dimix.
the value there can be a general input parameter and then should be passed to the other elements. I know, there can be other possibilities, but this way is given for me.
Thanks for the advice with dimnm & dimix.
-
- MVP
- Posts: 3234
- Joined: Mon Dec 29, 2008 6:26 pm
- OLAP Product: TM1, Jedox
- Version: PAL 2.1.5
- Excel Version: Microsoft 365
- Location: Brussels, Belgium
- Contact:
Re: Feeder from one n-elenemt to many n-elemets
For the feeder, you have a couple of options.
If the cube is really 2D and small, then don’t bother about feeders (and leave out the skipcheck statement near the top).
Or if you want feeders, feed to 12 elements, comma-separated areas on the right hand side of the feeder.
Or, add a consolidated element with 12 children for the months (the ones you need to feed). Then feed the consolidation to implicitly feed its 12 children.
If the cube is really 2D and small, then don’t bother about feeders (and leave out the skipcheck statement near the top).
Or if you want feeders, feed to 12 elements, comma-separated areas on the right hand side of the feeder.
Or, add a consolidated element with 12 children for the months (the ones you need to feed). Then feed the consolidation to implicitly feed its 12 children.
Best regards,
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly
-
- Posts: 18
- Joined: Thu Jan 02, 2020 3:05 pm
- OLAP Product: TM1
- Version: 10.2.2
- Excel Version: Excel 365
Re: Feeder from one n-elenemt to many n-elemets
Hi Wim,
the Cube isn't really just 2D, that was just for the example. So I really have to use feeders.
Yes, your second suggestion ist the way I wanted to prevent in some cases
I really like your third point, because I dindn't know that by feeding a consolidation the children automatically gets the feeder from their parent.
So I guess it is also possible over a hierarchy with more levels? IF I feed C1 here, do all N elements (N1C2, N1C2, N1C3) get the feeder?
-C1
--C2
--N1C2
--N2C2
---C3
---N1C3
Thanks a lot!
the Cube isn't really just 2D, that was just for the example. So I really have to use feeders.
Yes, your second suggestion ist the way I wanted to prevent in some cases

I really like your third point, because I dindn't know that by feeding a consolidation the children automatically gets the feeder from their parent.
So I guess it is also possible over a hierarchy with more levels? IF I feed C1 here, do all N elements (N1C2, N1C2, N1C3) get the feeder?
-C1
--C2
--N1C2
--N2C2
---C3
---N1C3
Thanks a lot!
-
- MVP
- Posts: 3234
- Joined: Mon Dec 29, 2008 6:26 pm
- OLAP Product: TM1, Jedox
- Version: PAL 2.1.5
- Excel Version: Microsoft 365
- Location: Brussels, Belgium
- Contact:
Re: Feeder from one n-elenemt to many n-elemets
True. But watch out with feeding like that, since the number of fed cells can grow quickly into big numers (if you apply the technique to several dimensions for example).
Best regards,
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly