ContributionsMost RecentMost LikesSolutionsRe: Finance Business Rule Data.Calculate format I think you changed your old code incorrectly. In the second argument of the multiply unbalanced, you need to reference the unbalanced dims. Below is the correct way: Re: Finance Business Rule Data.Calculate format Both suggestions byrhankeyandakatsmanare good - either an Eval or a Data Buffer cell loop give you ultimate flexibility, however, they are fairly advanced techniques that can be hard to get your ...Re: Extract incremental data from cube Setting up data extraction on a quarterly basis is easy and could be done with a combination of Data Management Sequences, Task Scheduler, and an optional dashboard. For example, after the quarter is...Re: Absolute Value in a UD8 Formula Ok I think I understand. Perhaps instead of using an array, you can put the values in a dictionary with the Name being the decimal name and the Value being the absolute value. Then you can pull the m...Re: Absolute Value in a UD8 Formula I'm not sure why you would need to do that. You have the original amount from the dAmount_1 variable and then you can set the absolute value to a new variable. Re: Absolute Value in a UD8 Formula Math.Abs(dAmount_1),Math.Abs(dAmount_2), etc should give you what you need. Re: How to use Entity Assigned in workflow into Dashboard Data Adapter Hi - There is a Method Type specifically for Assigned Workflow Entities. Re: Display Text1 member property instead of name or description in cubeview What exactly are you trying to do and where are you call the rule? I can see right away that the return statement is returning the groupedValues variable which is a Dictionary. Only Strings can be re...Re: Display Text1 member property instead of name or description in cubeview For that requirement, you would need to set up an attribute dimension that refers to the text field. Re: Display Text1 member property instead of name or description in cubeview You can use an XFBR rule. See script below. The member filter in the CV would be: u1#top.descendants.where(Text1 <> ''"):Name(XFBR(XFBR_Example,GetTextFieldForDescription, UD1Member = |MFUD1|)) ...