Hi All,
I would just like to know something about feeders. If you have a rule in which you have { } brackets on the left hand side of the "=" sign how do you feed the rule? Do you have to feed every element within the { } bracket on it's own?
Ex. [{'A','B','C'}] = ['D'] * ['E'];
Thank you!
Feeders, the make me crazy!!
-
- MVP
- Posts: 214
- Joined: Tue Nov 11, 2008 11:57 pm
- OLAP Product: TM1, CX
- Version: TM1 7x 8x 9x 10x CX 9.5 10.1
- Excel Version: XP 2003 2007 2010
- Location: Hungary
Re: Feeders, the make me crazy!!
Hello,
Yes, you have to write:
['D']=>['A'],['B'],['C']; or
['E']=>['A'],['B'],['C'];
depending on the business logic of your model.
You can also create a C element from 'A'+'B'+'C' eg.'ABC' and send the feeder to that element instead of the individual elements.
['D']=>['ABC']; or
['E']=>['ABC'];
Regards,
Peter
Yes, you have to write:
['D']=>['A'],['B'],['C']; or
['E']=>['A'],['B'],['C'];
depending on the business logic of your model.
You can also create a C element from 'A'+'B'+'C' eg.'ABC' and send the feeder to that element instead of the individual elements.
['D']=>['ABC']; or
['E']=>['ABC'];
Regards,
Peter
Best Regards,
Peter
Peter