Not calculation formula

Hi all

1. I am facing a problem. I'm figuring a member (BC54500.100) dimension in two different ways, one way, then the SCENARIO dimension member selected in the screen is "TRAFFIC" and a different way for each other Member of the SCENARIO dimension.

BC54500.100 has two children, a BT54500.100 who has the percentage of data type and BT54500.110 which is used to store the actual for this calculated, real Member coming from the EBS.

For this I need an IF clause, so I did:

If (@CURRMBR ("Scenariu") is "TRAFFIC")

BC54500.100 = 5 * BT54500.100 / 100;

ON THE OTHER

BC54500.100 = (BC54110.100 + BC54110.200 + BC54420.100 + BC54420.200 + BC54410.100 + BC54410.200 + BC54110.300 + BC55300.700 + BC54210.600 + BC55300.900) * BT54500.110;

ENDIF;

The Colombia-British... and BT. are all members of the dimension account.

The problem is that it never calculates the ELSE condition. I tried to move the formulas in order to have an answer, I also tried:

If (@CURRMBR ("Scenario") <>'TRAFFIC')

BC54500.100 = (BC54110.100+BC54110.200+BC54420.100+BC54420.200+BC54410.100+BC54410.200+BC54110.300+BC55300.700+BC54210.600+BC55300.900)*BT54500.110/100;

ELSEIF (@CURRMBR ("Scenariu") == "TRAFFIC")

BC54500.100 = 100 * BT54500.100 / 100;

ELSEIF (@CURRMBR ("Scenariu") == "Revizie1")

BC54500.100 = (BC54110.100+BC54110.200+BC54420.100+BC54420.200+BC54410.100+BC54410.200+BC54110.300+BC55300.700+BC54210.600+BC55300.900)*BT54500.110/100;

ON THE OTHER

BC54500.100 = (BC54110.100+BC54110.200+BC54420.100+BC54420.200+BC54410.100+BC54410.200+BC54110.300+BC55300.700+BC54210.600+BC55300.900)*BT54500.110/100;

ENDIF;


Each time, the last condition is not respected in the calculations. I moved the formulas between them over and over again, whenever that is the last is not calculated... Any ideas?




2. another another minor issue, is that as I have said before that I have some members as BT54500.110, who have the percentage data type. And I have 10 entities, with a parent entity. When I view the data in the form that sums the values which lie on all BT54500.110 members for all entities, even if at the level of plan type, I selected medium. I do not have the sum, ideas?

We have Hyperion Planning 11.1.2.2.0.7790


Thank you very much for your time!

Thank you Philip for your reply and thank you all.

I managed to solve the problem.

The solution was:

SET UPDATECALC ON / OFF;


before the formula correction...

Tags: Business Intelligence

Similar Questions

  • If an else statement not calculation in pdf format. Help!

    This formula (see below) does not (calculation) result.  What's wrong?

    var a = this.getField ("Positions_Rates");

    var b = this.getField ("Positions");

    If (a.value == '$0 - no position not bought') {}

    (b.value = 0);

    } ElseIf (a.value == $40 Top position 'bought') {}

    (b.value = 40);

    } else {}

    (b.value = 1);

    }

    Then, you must use "event.value" instead of "b.value.

  • Calculation - formula

    I have a block based on a view. In this block, I have a question: calc_amt based on a calculation, the calculation mode = formula, it has non-base of data element value.

    without having to go through the database that I need to sum up a total of line where the charge_type in the same block is set to "3"

    I write in the formula of the-> next: calc_amt: = sum(:line_total) where: charge_type = 3 because this is obviously not a SQL statement.

    I tried this on a post, once again request that did not ' work... any ideas?

    PROCEDURE calculate_amt IS
    n_records NUMBER;
    n_count NUMBER: = 1;
    c_calc NUMBER: = 0;
    BEGIN
    LAST_RECORD;
    n_records: = TO_NUMBER(:system.cursor_record);
    PREMIER_ENREGISTREMENT;

    While n_count < = n_records LOOP
    IF: three.charge_class_type = 3
    AND: three.charge_type = 3 THEN
    c_calc: = c_calc +: three. ENT_TOTAL_CHARGE_AMT;
    END IF;

    NEXT_RECORD;
    n_count: = n_count + 1;
    END LOOP;
    : three.calc_amt: = c_calc;
    PREMIER_ENREGISTREMENT;
    END;

    Hello:

    There are two steps bneeded for your scenario:

    To calculate the sum of the values of an item on the entire block, use an element of calculation with calculation-mode = 'summary '.
    Because you do not want to sum up all the values, but only the values with a certain condition, you must use an additional formula that sets the value to sum up either to 0 (if your condition is not met), or to the appropriate value (if your condition is met).

    In detail:
    Create a non-base of additional data in your block, value calculation formula, as formula enter

    CASE WHEN :BLOCK.CHARGE_TYPE=3 THEN :BLOCK.line_total ELSE 0 END
    

    Then, set the calculation method for your item in calc_amt to 'Summary', set summary-function 'Sum', summary-block to your block, summary_item to the newly created formula article.

    In addition, you must set the value "Query all records" on your true block (or 'Summaries of prior calculation' to 'true').

    I hope this helps.

  • Form of complex pricing - auto calculation formula

    Hello

    I have a form of pricing that offers tickets at $350 for the first ticket and $270 for each subsequent ticket. I created the formula to calculate the number of tickets x first prize, but I don't know how to change the formula to calculate the additional tickets. Anyone know who I go about it?

    Sorry if this is not clear.

    Thank you
    Kate

    Let's say that the number of tickets is located in an area called "NumberTickets". You can use this script to custom for the total price field calculation

    var numTix = Number(this.getField("NumberTickets").value);
    if (numTix==0) event.value = 0;
    else if (numTix==1) event.value=350;
    else event.value = 350+((numTix-1)*270);
    
  • Member not pulling formula

    I have a situation where a member does not compute. Any help would be appreciated by explaining why it does not work.

    Outline
    A very simple pattern. The size of accounts had salaries, staffing and salaries. Salary is a member stored with a formula of staff * wages.

    Calculation
    DIFFICULTY)
    'Forecasts', 'FY12', 'work '.
    )
    "Wages."
    (
    IF ((@ISMBR ("FY12") AND @ISMBR("Apr":"Mar") AND @ISMBR ("Budget")) OR)
    (@ISMBR ("FY12") AND @ISMBR("Apr":"Jan") AND @ISMBR ("Forecast")))
    "Salary";
    ENDIF)
    ENDFIX

    Question
    It's getting fired a web form of planning, so I need the IF statement. As above, salary does not change. If a value exists, it remains. If it's #MI, there. If I change _ "Salary"; "Salary" = "Forces" _ * "wages"; _, it works as expected.

    I can't explain why the formula of Member isn't going to get fired? This isn't a question of creation of block.

    Normally, when you enter a member name in a formula, it triggers the formula of Member. However, when the name of the Member is inside of an IF statement, it ignores the Member form. When it is inside an IF statement, basically makes the Member equal to itself. So, you probably see nothing change.

    I hope this helps.

  • Do not run formula until the full input cells

    Hello ladies and gentlemen

    I'm not a user of regular broadcast sheet, there must be a good few years since I changed the numbers you use...

    But I plug just your new car and I wanted a spreadsheet for just about track mileage and fuel MPG etc.

    Self created one and it works very well in my goals.

    I copied the formulas in cells, but the lines that have not been provided for future end of refuelling upward with being supplemented with nonsense

    How can I avoid the form "in cell formulas' filling the cells up to that there are entries in the column of the figure of supply?

    Perhaps easier if I show a picture

    Yellow cells I get my numbers

    Green cells contain formulas.

    How can I stop the numbers filling in the Green columns until I enter numbers in the yellow?

    As you see, the-9800 the ones and zeros of formula errors

    I did some research... but no idea what word I'm looking for able to conduct a successful search. Tried such research than the job title and multiple similar on the same theme... but all from a blank test.

    Here is the worksheet that I created:

    http://paisnel.co.UK/upload/KIA.numbers

    Thank you

    Hi Neil,

    This approach is to test your yellow column to see if it has a value. Len() will be taken into account the characters in a cell.

    C3 = IF (LEN (B3) "> 0, B3−B2," "")

    This formula will test a B3 value and if there is one subtract it from B2. If there is no value it returns "" which resembles a cell empty.

    If B is always going to be a numeric value, you could simplify the test:

    IF(B3>0,B3-B2,"")

    Quinn

  • Proportional calculation formula

    Hello

    I need to apply a concept of proration for basic treatment... It works very well for newly hired employees... But when I attach my element on Middle month say to, for example: 10 sep 2013 this base should be calculated only until 30 September 10 Ms. How can I do this... ?

    Kind regards

    Archana

    Try ENTRY_START_DATE

    There are several ways to make the proportional calculation-

    #Event group - My Oracle World: proportional formula in Oracle HRMS payroll

    # Or directly in the fast formula by checking the dates of entry element.

    See you soon,.

    Vignesh

  • calculated formula database field trying to insert the null value

    Hello

    I have 3 elements of database text amount, rate and result.
    I enter both values (quantity and frequency), and the property using formula 'result' Gets the computed value.
    On the screen all the values are displayed correctly but when trying to save my information text field 'result' tent to insert the null value.

    Any suggestions?

    Forms 11g

    Thanks in advance

    794018 wrote:
    Hello

    I have 3 elements of database text amount, rate and result.
    I enter both values (quantity and frequency), and the property using formula 'result' Gets the computed value.
    On the screen all the values are displayed correctly but when trying to save my information text field 'result' tent to insert the null value.

    Point formula should not be issue of database. And insert the value in the result column in the database is not good idea.
    Then, if you want to save it. create the database result item and write trigger (When-validate-point) on amount and filed rates and the trigger code, write

    :result:=:amount*:rate;
    

    To display the result on the form, create the database no item and change the formula property and write the formula.

    Hope this will help you

    If someone useful or appropriate, please mark accordingly.

  • Moscow time is not calculated correctly

    Windows 'Date and time'-> 'Additional clocks', Moscow time calculation is incorrect. Can you please have this changed?

    I am in China, China time should be 5 hours before Moscow.

    Hi John,.

    We suggest that you manually change the date and time and the time zone of your computer. To do this, follow the steps below:

    1. Click on the date and time, located on the lower right part of the computer.
    2. Click change date and time settings.
    3. In the Date and time tab, click the change date and time.
    4. Set the date and time according to your location.
    5. Click OK.

    To change the time zone, follow these steps:

    1. Click on the date and time, located on the lower right part of the computer.
    2. Click change date and time settings.
    3. On the Date and time tab, click on change time zone.
    4. Assign China time zone, and then click OK.

    Let us know how it goes.

  • price is not calculated by process sales order API

    All, I am trying to create a sales order by using the API to process control.
    For some reason, its settlement not online price accordingly I am not able to book.
    I'm defining the price indicator to calculate 'Y '. The price is not filled yet.

    Here is the code for the line:

    l_in_line_tbl (1): = oe_order_pub.g_miss_line_rec;
    l_in_line_tbl (1) .inventory_item_id: = '162744';
    l_in_line_tbl (1) .ordered_quantity: = 1;
    l_in_line_tbl (1) .ship_from_org_id: = 207;
    l_in_line_tbl (1) .orig_sys_document_ref: = "NB_HEADER_2";
    l_in_line_tbl (1) .orig_sys_line_ref: = "NB_LINE_2";
    l_in_line_tbl (1) .operation: = oe_globals.g_opr_create;
    l_in_line_tbl (1) .calculate_price_flag: = 'Y ';

    It works fine when I create manually!
    Can someone please tell me what I'm doing wrong?

    Published by: 918553 on October 23, 2012 14:18

    Date of arrival:

    (1) if there is already a list of prices to be missing in the configuration of the customer of the Type of transaction parameters. Otherwise, you may need to pass a list of price/list_header_id.
    (2) if the unit of MEASUREMENT on the price list is different than the unit of MEASUREMENT in the article master configured

    Dip

  • The first TB is not calculated

    Hi all


    I have an account and property set as first TB but year total is always aggregate values than as flow. In this narrative, there is no formula or anything, its just entered. Please let me know if I miss anything.

    I really appreciate your response.
    Jan Feb mar yeartotal
    for ex: 200 100 50 350 (instead of 200) Beg

    Thank you.

    Hello

    A member of your "YearTotal" is two passes Calc. Is a member of your "YearTotal" in two pass calc in your second request?
    Maybe first to succeed: time scale applied first - and second pass: applied DTS property.

    Concerning

  • Calculated field is not calculated

    If I create a form from scratch, I can calculate a field for me, but if I import even a simple PDF in LiveCycle Designer and try to add fields and make them compute, they just sitting there, not calculate anything.

    Attached is a form that I'm trying to calculate something for me.  The top 3 unmarked boxes are A, B and C.  C is supposed to calculate A + B.  I don't know why it is not... any ideas?

    You use FormCalc syntax on the JavaScript calculate event. Use one

    topmostSubform.Page1.c::calculate - (FormCalc, client)

    $.rawValue = a + b

    or

    topmostSubform.Page1.c::calculate - (JavaScript, client)

    this.rawValue = a.rawValue + b.rawValue;

    Steve

  • With the help of the previous line in a formula calculator

    Hello.  I use the calculator to create a new string that is a custom filtered version of an existing channel.  Unfortunately, I was not able to identify the entrance of previous line in the channel.  To make things easier, let's say my filter is a simple averager.  This is simple pseudocode for what I want to do:

    New_Channel = (Existing_Channel [n] + Existing_Channel [n-1]) / 2

    where n is the current line.

    It's the calculator formula, with I came:

    ch("[1]/New_Channel") = (CHD (' chnRow - 1 ' [1] / Existing_Channel "") + ch("[1]/Existing_Channel")) / 2 + CTNV (chnRow > 1)

    Unfortunately, I think that chnRow returns 0.

    Of course, I'm a beginner.  I'm open to other approaches to the creation of a new channel with a custom filter.

    Thank you!

    Hi jbuttron,

    What you need to do is to copy the channel and remove the first value of the copied channel then the nth line of the original channel is aligned on the e line (N-1) of the copied string.  You must also add the last value of the string copied at the end of this channel as a new value that both channels end up with the same channel width.  Now you can reference the channels with Ch("[1]/old") and Ch("[1]/new") in the expression of canal's calculator, assuming that the channel names are 'old' and 'new' respectively and both are in the first group.  You need not row variable in the expression now, which is good because there is no way to iterate through a variable row in an expression of canal's calculator.  The iteration of the row is implicit in the reference channel Ch("[1]/new").

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

  • Text element with the formula no recording is not in Table

    Dear all,

    I have a text element with 'Formula calculation' in the property Palette > > calculation > > formula, when I record using validation form to trigger validation key full transaction message but does not backup on the data column occupying a formula.

    What is the reason behind this? Can you get it everything one please let me know how to solve this problem.

    Kind regards

    Atif Zafar

    Dear Atif,

    Oracle will not save the value of formula to database column. If you want to save the calculated value, and then create another element of text as part of database and remove the column of formulas and forward INSERT or UPDATE before, assign the value in the formula column to the item database.

    I hope this helps.

    Manu.

  • doubt of formula calculation?

    Hello

    Can we do a database in a form item to store a calculation formula... ?
     
    
    :ITEM_QTY * :ITEM_PRICE
    or we have 2 make poster...!


    Kind regards


    Abdetu...

    An item in a data block doesn't have to be displayed/visible in your form to stored / maintain a value of the formula. Create a test form that displays the field calculation initially so that you know that it's working properly. Set the property of the "Web" with a NULL value for the element, and then add a button that displays the value of the calculated item not shown in a Message(). When you click the button, you will see the displayed value! ;-)

    Hope this helps,
    Craig B-)

    If someone useful or appropriate, please mark accordingly.

    Published by: Silvere on October 29, 2010 08:48

Maybe you are looking for

  • Google Street Views flicker evil in whatever happened Firefox 28

    Arrested upgrade to version 28 because Google Streetview (classic mode) flickers bad to any higher version. Because embedded in the Disqus post YouTube videos has recently stopped working in v28 I am obliged in a version that does not work for me. An

  • Pavilion Slimline s5 1204 PC: Smart HARD drive detects imminent failure

    When I start the computer I get a warning: 1720-Smart hard drive detects drive not imminent failureATAO failing attribute # 5. How can this problem be solved?

  • the PCIe-1427 virtual comm port

    The utility of the seller of the SBF - 200 camera allows users to change the time rate and exposure of the image using a specified com port. The PCIe-1427 uses a virtual com port via camera link, but does not reveal the number of users or WINDOWS. An

  • Access denied when you try to edit BOOT. INI.

    I was using Norton Ghost to clone a drive for one of my clients.  The clone has failed for some reason any.  After powered my system down to remove the two discs I was working with my system turns on no longer.  I get the NTOSKRNL. EXE missing error.

  • E1500 and Motorola SB6141 cable modem

    I just got a new cable modem, Motorola SB6141 and when I connect the pc directly to the modem I get the blue light referring it works at high speed Gigabit Ethernet, but when I connect the E1500 light changes to amber which refers to just fast ethern