Need some of you Geniuses to help with an IF statement in SAP Dashboard

=IF(C12=6,'6x'!N53,IF(C12=10,'10x'!N53,IF(C12=15,'15x'!N53,IF(C12=18,'18x'!$N$53,"Not Valid"))))
This statement is pretty straight forward in excel but keeps giving me an error in Sap crystal dashboard/xcelcius
The error is all the single Gauge values.
I find that hard to believe ?? Any thoughts oh great gurus out there

HI ,
  Please check your C12 Cell. you may be using some formula or maping some dynamic value using some connection. Check that cell that causing you problem . If you are dividing anything by zero you will  get DIV/0 error

Similar Messages

  • I need some (make that lots of) help with buttons

    Hi,
    I am a new designer and I am working on my first web site for free. It started out as something I was capable of doing but it has now expanded into a site that is challenging for me. Anyway, I am having a lot of confusion with with making flash navigation buttons for the site.
    This is what the person wants.  In the up state he wants the button label in text only. In the over state he wants the text with a gray line behind it that slowly expands onto the page. In the down state he wants the same thing but have the text color change and the line color to change. This line is also suppose to stay on the page until the user moves the mouse again. Ultimately the line should also stay fully extended for a sub-menu.
    This is what I have done. I have been using action script 2 so I can use the behaviors panel. I made two different movie clips, one gray and one white, using shape tweens to slowly expand the lines.
    I started out with the lable only and turned it into a button. It showed in the "up" section of the time line and I put a fram in the "hit" section (layer 1).
    Next I inserted a new layer (layer 2) and put a keyframe in the over section of the timeline and made a gray box for behind the text and attached my gray movie clip to the end of it. I put layer 1 above layer 2 so that the text would show through. I did basically the same thing for layer 3 in the "down" section
    except changed the colors to black and put a keyframe in layer 1 to change the text color.
    Now this is what I get when I play the movie in flash. I have a button that the "hand" appears in only one very small section of it below the text. It does not appear when I hover over the text. When I "hit" the line keeps repeating the movie. I know this is a behavior but when I use the behavior panel to put in play and stop it shows the event as none. As for my black line in the down section, it plays so fast that it might as well not be there. How on earth do I stop it and get it to remain on the page? I also should tell you that I know very little about action script just in case that is the direction that I need to go.
    Thanks

    You'll probably have to spend some time learning how to create buttons and movieclips that do what you want, which is what you are in the thick of at the moment.  For the small area you say reacts to the mouse, the Hit frame is used to define the area that you want to be reactive... so if you had a tiny dot in the normal frames, you could add a big dot in the Hit frame to make it easier to get the mouse to work with the button... the Hit frame content does not display.
    For the movieclips, you need to add stop(); commands at the end of their timeines if you don't want them to loop.
    Another approach you might consider is to create your buttons as movieclips rather than as button symbols.  Going this route gives you much more control of how things behave, but does involve some actionscript to make them behave as if they were buttons for the various states. Some people do not use button symbols and will only use movieclip versions of them.

  • Need help with the session state value items.

    I need help with the session state value items.
    Trigger is created (on After delete, insert action) on table A.
    When insert in table B at least one row, then trigger update value to 'Y'
    in table A.
    When delete all rows from a table B,, then trigger update value to 'N'
    in table A.
    In detail report changes are visible, but the trigger replacement value is not set in session value.
    How can I implement this?

    You'll have to create a process which runs after your database update process that does a query and loads the result into your page item.
    For example
    SELECT YN_COLUMN
    FROM My_TABLE
    INTO My_Page_Item
    WHERE Key_value = My_Page_Item_Holding_Key_ValueThe DML process will only return key values after updating, such as an ID primary key updated by a sequence in a trigger.
    If the value is showing in a report, make sure the report refreshes on reload of the page.
    Edited by: Bob37 on Dec 6, 2011 10:36 AM

  • Help with this update statement..

    Hi everyone,
    I am trying to update a column in a table .I need to update that column
    with a function that takes patient_nbr and type_x column values as a parameter.
    That table has almost "300,000" records. It is taking long time to complete
    almost 60 min to 90 min.
    Is it usual to take that much time to update that many records?
    I dont know why it is taking this much time.Please help with this update statement.
    select get_partner_id(SUBSTR(patient_nbr,1,9),type_x) partner_id from test_load;
    (it is just taking 20 - 30 sec)
    I am sure that it is not the problem with my function.
    I tried the following update and merge statements .Please correct me if i am wrong
    in the syntax and give me some suggestions how can i make the update statement fast.
    update test_load set partner_id = get_partner_id(SUBSTR(patient_nbr,1,9),type_x);
    merge into test_load a
    using (select patient_nbr,type_x from test_load) b
    on (a.patient_nbr = b.patient_nbr)
    when matched
    then
    update
    set a.partner_id = get_partner_id(SUBSTR(b.patient_nbr,1,9),b.type_x);
    there is a index on patient_nbr column
    and the statistics are gathered on this table.

    Hi Justin,
    As requested here are the explain plans for my update statements.Please correct if i am doing anything wrong.
    update test_load set partner_id = get_partner_id(SUBSTR(patient_nbr,1,9),type_x);
    "PLAN_TABLE_OUTPUT"
    "Plan hash value: 3793814442"
    "| Id  | Operation          | Name             | Rows  | Bytes | Cost (%CPU)| Time     |"
    "|   0 | UPDATE STATEMENT   |                  |   274K|  4552K|  1488   (1)| 00:00:18 |"
    "|   1 |  UPDATE            |        TEST_LOAD |       |       |            |          |"
    "|   2 |   TABLE ACCESS FULL|        TEST_LOAD |   274K|  4552K|  1488   (1)| 00:00:18 |"
    merge into test_load a
    using (select patient_nbr,type_x from test_load) b
    on (a.patient_nbr = b.patient_nbr)
    when matched
    then
    update
    set a.partner_id = get_partner_id(SUBSTR(b.patient_nbr,1,9),b.type_x);
    "PLAN_TABLE_OUTPUT"
    "Plan hash value: 1188928691"
    "| Id  | Operation            | Name             | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |"
    "|   0 | MERGE STATEMENT      |                  |   274K|  3213K|       |  6660   (1)| 00:01:20 |"
    "|   1 |  MERGE               |        TEST_LOAD |       |       |       |            |          |"
    "|   2 |   VIEW               |                  |       |       |       |            |          |"
    "|*  3 |    HASH JOIN         |                  |   274K|    43M|  7232K|  6660   (1)| 00:01:20 |"
    "|   4 |     TABLE ACCESS FULL|        TEST_LOAD |   274K|  4017K|       |  1482   (1)| 00:00:18 |"
    "|   5 |     TABLE ACCESS FULL|        TEST_LOAD |   274K|    40M|       |  1496   (2)| 00:00:18 |"
    "Predicate Information (identified by operation id):"
    "   3 - access("A"."patient_nbr"="patient_nbr")"Please give some suggestions..
    what's the best approach for doing the updates for huge tables?
    Thanks

  • You are no help with only one sentence

    I have been using FireFox for years, but recently I have been getting a "TypeError, etc" message. Clearing the message only results in distorting my browser. I have tried every trick you suggested on-line to no avail. If you can't fix this problem, I have no choice but to use another browser.
    Help!

    Many of "you guys" in this open form are other users like you... it sounds like you have a problem that only Adobe staff can fix
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • I Need Someone Personal Step By Step Help With Download Dvd to IPOD

    I Have 4 program on my Computer I need to know which program will help me to get the DVD Over to my IPOD. I have Quicktime 7 Pro
    Videora IPOD Converter
    Amazon DVD shrinker
    Inter Video DVD Copy 4
    Please help me out. How To Convert them over so it can wshow on my IPOD PLEASE list step by step Thank You

    I use dvd decrypter though you may find it hard to come by since they were just bought. Then I use a program called Xilisoft (www.xilisoft.com) to convert. I convert to psp format as they share the same format (the psp requires you to have a .thm file as well). IF you want your file to be one movie file instead of individual .vob files, you will want to change you use DVDDecrypter the mode to ifo.Then you will want to right click on the pgc file on the right and go down to file splitting and select none. After that you need to click on stream processing and enable it. Deselct all options except for the top 2 (usually video and audio - you can play around with the audio but I find those 2 to be best. Xilisoft is self explanitory but if you can't figure it out, I suggest you Google it.
    Remember, it is only legal to back up your own DVD's.

  • Looking for some help with building insert statements...

    Hi, I am using some sql to build some insert statements for me to update a set of tables in our qa environments. The scripts that I have created were working great until someone added a column to some of the tables in the qa env which in turn makes my scripts break because I was simply building the statment to do someting like this...
    insert into dest_table (select * from source_table@dblink);
    But now when the coumns in the tables do not match it breaks...
    This is the dynamic create script I use, can anyone help or suggest a better way to be able to build update statements update to qa tables when the columns are mismatched?
    spool insert.sql
    select
    'insert into ' || table_name || ' (select * from ' || table_name || '@prod );' || chr(10) || ' commit;'
    from user_tables
    where table_name in
    (select * from refresh_tablesl)
    any help is greatly appreciated,
    Thanks.

    See my reply to your duplicate post
    looking for help building dynamic insert statements...

  • Help with a select statement from a SQL Server within a DTS !!

    Hello Gurus!
    I help with the script bellow, when I run it within DTS (in SQL Sever 2000), I got the error Invalid number/or not a valid month.
    Please bellow with the WHERE CLASUE '08/01/2001' AND '03/09/2002'
    And in the other hand I change this forma to '01-AUG-01' AND
    '03-MAR-2002', the DTS start and run witha successful messages, but it does not returns row, which is wrong.
    Somebady please help!
    Thanks Gurus!
    GET Total ANIs with Trafic By Area Code
    select
         substr(b.ct_num, 0,3) as Area_Codes,
         COUNT(DISTINCT B.CT_NUM) AS ANIS
    from
         wasabi.v_trans A,
         wasabi.V_Sur_Universal B,
         wasabi.V_Sub C,
         wasabi.V_Trans_Typ D
    where
         D.Trans_typ = A.Trans_Typ AND
         A.Sur_ID = B.Sur_ID AND
         C.Sub_ID = A.Sub_ID AND
         a.trans_stat != 'X' AND     
         a.Trans_DTTM >= '08/01/2001'AND
         a.Trans_DTTM < '03/09/2002 AND
         B.AMA3 = 'PHONE1'
         AND C.SUB_ID not in (100117)
    GROUP BY
         substr(b.ct_num, 0,3)
    ORDER BY
         Area_Codes

    I think that you need a "to_date" function eg
    change '08/01/2001' to to_date('08/01/2001','dd/mm/yyyy')

  • Can you post a ARCreditNote with a Stock value into SAP without a COS value

    Hi Guys,
    I need some help here I am a XI/PI developer not a FI/CO consultant.
    My problem is my customer runs SAP B1 at their branches, now one of the branches made out a AR Invoice at the time of the invoice the stock had a zero value so the invoice looks like below
    CUST: 969.00
    REV: 850.00     QTY: 1
    VAT: 119.00         QTY:1
    Now the invoice posted successfully, then a month later they make out a AR Credit Note which looks like this
    CUST: 969.00
    REV: + 850.00     QTY: 1
    VAT:  + 119.00     QTY:1
    STOCK: + 385.00     QTY: 1
    PPV:  - 385.00     QTY: 1
    COS: 0.00
    The credit note I get the following error
    Error:
    Missing line item for CO-PA characteristic line 0000000900
    Now what I want to know is it possible to post this credit note into SAP.
    Kind Regards,
    CJ Bester

    endmile said:
    Writing to the local variable will set the value at that time, but it's still updating the value of the local variable all the time.
    What exactly do you mean by this?
    endmile said:
    But in this case, I think the simplest answer is the property node.
    That's not a valid conclusion. There is no "simplest" answer. It's all context-based. There's nothing "bad" or "evil" about local variables. In fact, they tend to be faster than writing to the "Value" property node. Let's just say that proper use depends on understanding how each operates, and once you know that, each can be used effectively.
    I hope this doesn't become another one of those "local variables vs property nodes".

  • Help with a CASE statement

    Please help me with a CASE Statement:
    - When ID = 15, 16, 17, 18 then "Bad"
    - when ID = 19, then "Average"
    - when ID = 21, then "Good"
    - else "Null"
    Thank you!!

    Well the 1st thing to do would be to correct my poor spelling... change    Delault : to Default :
    Don't know why you would get an error stating "The result of selection formula must be a boolean". It's working fine on my machine.
    If your ID field is numbers stored text you have a couple different options...
    1) Convert the ID to a number...
    Select  ToNumber({home.noone_ID})
    2) Wrap the ID values in double quotes...
       Case "15", "16", "17", "18" :
          "BAD"
    Even if this were your problem... the error should be something other than the boolean thing...
    Jason

  • Help with multiple case statements

    Hello,
    I am new to BO.  I am on XI 3.0.  SQL 2005.  In Designer, I am trying to create a measure in a financial universe that would end up being multiple case statements within one select.  This is what I tried to do, but it doesn't work with the two case statements.  Can I use an ELSE leading into the second CASE WHEN somehow?  How can I accomplish this?  Sorry for my ignorance!
    CASE WHEN dbo.ClientBudgetYear.DateStage1Approved > 01/01/1900 AND dbo.ClientBudgetMonth.Month = 12 THEN dbo.ClientBudgetMonth.Stage1Sales END
    CASE WHEN  dbo.ClientBudgetYear.DateStage1Approved > 01/01/1900 AND dbo.ClientBudgetMonth.Month = 11 THEN dbo.ClientBudgetMonth.Stage1Sales END
    Any Suggestions?
    Thanks,
    Holly

    Holly,
    I don't know enough about your data or requirement to provide a solution, however, the construct that you post will not work because it causes you to build an object with multiple case statements when only one case statement per object is permitted.  From what I see in your code I would be inclined to combine the two statements into one as such:
    CASE WHEN dbo.ClientBudgetYear.DateStage1Approved > 01/01/1900 AND dbo.ClientBudgetMonth.Month in (11,12) THEN dbo.ClientBudgetMonth.Stage1Sales else null END
    Thanks,
    John

  • Help with Switch-Case Statement

    How do you get this in a switch-case statement or work with it?
              if (age < 70) {
                        JOptionPane.showMessageDialog(null, "People that are below the 70s are nothing special.");
              else if (age > 69 && age < 80) {
                        JOptionPane.showMessageDialog(null,  "People that are in their 70s are called septuagenarian.");
              else if (age > 79 && age < 90) {
                        JOptionPane.showMessageDialog(null,  "People that are in their 80s are called octogenarian.");
              else if (age > 89 && age < 100) {
                        JOptionPane.showMessageDialog(null,  "People that are in their 90s are called nonagenarian.");
              else (age > 99 && age < 110) {
                        JOptionPane.showMessageDialog(null,  "People that are in their 100s are called centenarian.");
                   }Thanks~

    As per Java Specification, swtich case expects an integer and boolean cannot be used as param for switch.
    In your case switch can be used like this.
    int index = age /10;
    switch(index) {
    case 1:
    case 2:
    case 3:
    case 4:
    case 5:
    case 6:
    Your First case
    break;
    case 7:
    your second case
    break;
    case 8:
    third case
    break;
    case 9:
    fourth case
    break;
    default:
    fifth case
    break;
    Take note of the break statements. Its very important. But I wont prefer in this case. Code looks awkward and is not so meaningful.....

  • Help with a return statement please!

    hey, just hoping somone can help me with this return statement
    i have to add a method called "specialReport" this method takes a year as it's parameter. if the parameter is not a year between 1930 and 1969 inclusive it displays an error message, "not a valid year"
    if the parameter is a valid year, then it compares the parameter with the year field. if they are the same, and is the movie has been rented at least five times, the method will display the message "a good year for movies" if the years are different or the movie has NOT been rented at least five times, the method displays the message "try a different year"
    btw, the Year field is : yearReleased
    all help is very much appreciated!

    public void specialReport(int year){
       //add functionality to process here
       return;
    }

  • Need some help with a case statement implementation

    I am having trouble using a CASE statement to compare values and then display the results. The other issue is that i want to put these results in a separate column somehow.
    Heres how the code would look:
    SELECT "Task"."Code",
    "Stat" = CASE WHEN "Task.Code" = 1 THEN string
    ....and so on
    I wanted to make "Stat" the new column for the results, and string represents the string to be assigned if 1 was the value for code. I keep getting syntax error, any help would be nice.

    This is a lot easier than you might think.
    1) First, move another column of "Code" to your workspace.
    2) Click on the fx button and then on the BINS tab.
    3) Click on "Add BIN" and with the operand on "is equal to/is in," input 1 and then click "OK."
    4) Name this what you had for "string."
    Repeat for all the different values you want to rename as another "string" value.
    5) Finally, check the "custom heading" checkbox, and rename this column "Stat" as you indicated.
    That's it.

  • HT3180 I turned on my apple tv and there before me on the screen was a picture of the apple tv with the micro usb and power lead in with the usb side pointing to the blue itunes logo! I think its telling me that it needs some kind of update ! help

    I have tried reseting it through itunes ! But it does not recognise the apple tv and the itunes hasnt got any apple tv tabs? help

    It is telling you to restore by connecting to iTunes. Did you follow the steps exactly?
    Unplug all cables, then connect micro usb. Make sure to connect directly to the computer and not a leyboard port or USB hub.
    http://support.apple.com/kb/HT4367?viewlocale=en_US&locale=en_US

Maybe you are looking for

  • Playing video AND audio through TV speakers using Mini Display to HDMI adapter

    I have a late 2011 MBP and want to hear the sound of the videos I'm running on my MBP through the speakers of my LG HDTV.  I have used a Belkin Mini DisplayPort to HDMI adapter (model f2cd021eb) plugged in to my MBP with an HDMI cable running from it

  • Printing delivery note via attachment list

    Hi all, when I print a delivery note in VL02N, it is also archived as PDF in our archive system (SAPERION). My problem is, that a print from archive via attachment list is different (e.g. different borders) from that, which i printed at first. Is the

  • Help regarding a use case dealing with EO cache and Association Consistency

    Hi I am facing the following issue There are two VOs : VO1 and VO2 VO1 has two entity usages EO1 and EO2 VO2 has two entity usages EO1 and EO3 I use VO1 2 create two rows therefore there will be two underlying EO Rows for each entity usage in the cac

  • Cannot find Billing System Password to register for My Verizon account

    I'm trying to register for a My Verizon account with my new business phone line, in hopes that I can see when my next bill will be due, or if it has already been sent, but I've not yet received it. When I click to register for a My Verizon account, I

  • Timestamp and TopLink

    Hi, There's a note in the documentation of Oracle 10g that we should use TIMESTAMP instead of DATE in the DB. And with the JDBC-Driver 10g writing of java.util.Timestamp with Date and Time works but reading doesn't work. I throws an exception: Except