Subsets in Rules?

Post Reply
image2x
Posts: 125
Joined: Tue Jun 02, 2009 7:05 pm
OLAP Product: TM1, PAX, PAW, SPSS
Version: 2.0.916.10 on RHEL
Excel Version: 2016
Location: Minneapolis, MN

Subsets in Rules?

Post by image2x »

Could someone confirm that you cannot make use of Subsets in rules?

I'm guessing this is the case and I've search and searched but haven't been able to rule this out.

Thanks.
User avatar
Martin Ryan
Site Admin
Posts: 1989
Joined: Sat May 10, 2008 9:08 am
OLAP Product: TM1
Version: 10.1
Excel Version: 2010
Location: Wellington, New Zealand
Contact:

Re: Subsets in Rules?

Post by Martin Ryan »

You're right you can't. They're too dynamic, especially for feeders.

Cheers,
Martin
Please do not send technical questions via private message or email. Post them in the forum where you'll probably get a faster reply, and everyone can benefit from the answers.
Jodi Ryan Family Lawyer
User avatar
paulsimon
MVP
Posts: 808
Joined: Sat Sep 03, 2011 11:10 pm
OLAP Product: TM1
Version: PA 2.0.5
Excel Version: 2016
Contact:

Re: Subsets in Rules?

Post by paulsimon »

Hi

The nearest you can get to a subset on the left hand side of a rule is a hard-coded subset in { } allowing you to make the rule apply to more than one element from the same dimension, eg

[
{'GBP','EUR','USD','AUD'},
'Value'
]

With feeders you can use consolidations on the left and right hand side of the rule, which effectively say feed from every element below the LHS consolidation with a non-zero value to every element below the RHS consolidation.

In rules it is also possible to use an attribute tag eg

['Sales'] = N:
IF( attrn('Entity',!Entity,'SelectedEntity' ) = 1
,
['Units'] * 5
,
['Units'] * 3
) ;

Which effectively allows you to pick the Entities to which you want the special rule to apply.

Regards


Paul Simon
Post Reply