ContributionsMost RecentMost LikesSolutionsRe: DynamicCalc Account roll-up If this dynamically computed account rolls into let's say NetIncome, then you have a problem, as NetIncome usually needs to be copied to the Balance Sheet as a stored calculation. Stored calculation...Re: DynamicCalc Account roll-up Formulas with division almost always have to be computed as dynamic calcs, so they occur after any dimension aggregation. Performing division as a stored calc will be correct with base level data, b...Re: DynamicCalc Account roll-up Further to T_Kress's response, the other alternative is to stick with your existing Dynamic Calc formula, but also add a Dynamic Calc to the parent, which would aggregate the children. With care, th...Re: determining parent by hierarchy Same concept. Build a dictionary of Management.DescendantsInclusive. When moving the member within Management, remove the relationships for any parents in the Management dictionary. I suggested th...Re: determining parent by hierarchy If I understand correctly, the goal is to move a member from hierarchy A to hierarchy B. If so, then build a dictionary of A.DescendantsInclusive members. Then when moving the member, simply remove...Re: Member Filter Functions in Finance BR I can't imagine why you would need the UD1 filter you are showing when retrieving a data buffer. Just remove the UD1 filter. When obtaining a data buffer, you are getting stored data, however it wa...Re: Member Filter Functions in Finance BR If a member filter contains commas, you will need to wrap the member filter with []. Eg "[U1#[XX].Base.Options(cube = AA , ScenarioType = Operational)]" so that the FilterMembers() function does not...Re: How can I remove empty values from GetDataBuffer and obtain the entity with Text1, Text2, Text3? There are two variations of the api.Entity.Text() function. One variant takes no parameters, and will operate on the POV entity. The second version allows you to specify any Entity member. Much th...Re: How can I remove empty values from GetDataBuffer and obtain the entity with Text1, Text2, Text3? A Databuffer holds data for a Data Unit, who's key is Cube, Entity, Parent, Scenario, Time & Cons. So, you aren't going to find Entity in the rows of the Databuffer, which contains some or all of a ...Re: Run "Business Rule" via "Member Formula" All I believe you can call directly from a Member Formula, or Formula for Calculation Drill Down are Finance type Business Rules, which is what the code sample I provided was calling. The reason for...