I've come up against this a couple of times and can't figure it out. If I have a Measure defined using a very simple rule which has no input Measures (more specifically, no input values from other cells in the cube) - eg a Counter used for averages - how does one make this consolidate?
e.g.
Code: Select all
SKIPCHECK;
['Counter'] =N: 1;
FEEDERS;
The answers I can see are:
a) Load the value through TI rather than the rules file. Downside is that this is a little less flexible, especially when quickly 'testing' rules by temporarily hard-coding a value in the Rules file. Also, it can reduce readability if the rest of your related logic is in the Rules file. However, I guess this is the most efficient solution.
b) Use a 'dummy' feeder and feed 'Counter' from a different Measure, even though there isn't a relationship between them. Downside is that this seems likely to be inefficient as there is an unnecessary (?) feeder. Also, I guess it might result in incorrect values if the feeding Measure is zero when the Counter isn't (?).
c) Use ConsolidateChildren, but everything I read about that makes it sound like a bad idea (and it applies to specific dimensions rather than generally over all dimensions).
Sorry if this has been covered before. I've been searching through the forums but there are so many questions about Feeders it's like finding a needle in a haystack!
Many thanks,
Zac