Counting and displaying Uniqe Values(Countries)

I have a Large table, Country, Project, Month(Jan, Feb, March.....)
I Count Projects each Month based on simple Formula.
Yes/No = Removed
No/Yes = Added
Yes/Yes= No Changes
No/No = None
Projects are all fine. i got all in and outs. (COUNTIF[Range]"Value") and (SUMIF"Value"[Range])
I count Unique Countries
=SUM(IF(A3:A10031<>"",1/COUNTIF(A3:A10031,A3:A10031)))-(CTR-SHIFT-ENTER)
How can i get the In(Added) and Outs(Removed) of the Unique Values of Countries based on Projects Answers?
Country
Project Num
Jan-14
Feb-14
Mar-14
Apr-14
May-14
Jun-14
Jul-14
Aug-14
Sep-14
Oct-14
Nov-14
Dec-14
Angola
AGO 1
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
Ghana
GHA 8
No/No
No/No
No/No
No/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Ghana
GHA 1
No/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
Ghana
GHA 3
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
Ghana
GHA 5
No/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
Ghana
GHA 7
No/No
No/No
No/No
No/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Ghana
GHA 2
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Ghana
GHA 6
No/No
No/No
No/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Kenya
KEN 5
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
Kenya
KEN 3
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
Kenya
KEN 4
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
Kenya
KEN 6
Yes/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
Kenya
KEN 6
No/No
No/No
No/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
Kenya
KEN 7
No/No
No/No
No/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
Mauritius
MRU 1
No/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
Morocco
MAR 2
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
Mozambique
MOZ 1
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
Mozambique
MOZ 2
Yes/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
Mozambique
MOZ 3
No/No
No/No
No/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
Mozambique
MOZ 4
No/No
No/No
No/Yes
Yes/Yes
Yes/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
Namibia
NAM 1
Yes/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
Nigeria
NGA 2
Yes/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No
No/No

Which Excel version do you use?
If you have Office 2013 Professional Plus, Office 365 Pro Plus, or Excel Standalone editions, you should consider using
Power Query Add-In to get your report.
With Power Query you can transform the data above, unpivot it and load it to the worksheet. Then with PivotTable you can get anything you need.
With Power Query, I took your data above and unpivot it into this table:
Then I created a PivotTable to count how many projects you got by month (With PivotTable you can achieve many other reports on top of this kind of data).
If needed, I can provide step-by-step instructions, once you install Power Query.

Similar Messages

  • I am trying to build a basic TCL skeleton script that reads a remote SNMP OID and displays the value on the screen.

    I am trying to build a basic TCL skeleton script that reads a remote SNMP OID and displays the value on the screen.
    I don't want it to be an EEM Event, I just want to run it from the (tcl)# prompt.
    So I guess I'm asking if you can use cli_exec and other commands in the "namespace import ::cisco::eem::*" in a normal non-EEM script - can I do that?
    This is the error I get:
    OTN.159(tcl)#source flash:TCL_SNMP_Remote_Read.tcl
    invalid command name "::cisco::eem::event_register_none"             ^
    % Invalid input detected at '^' marker.
    What am I missing?
    =================  TCL_SNMP_Remote_Read.tcl  ==============================
    ::cisco::eem::event_register_none
    namespace import ::cisco::eem::*
    namespace import ::cisco::lib::*
    if [catch {cli_open} RESULT]
        { error $RESULT $errorInfo }
        else { array set cli1 $RESULT }
    if [catch {cli_exec $cli1(fd) "snmp get v2c 192.168.1.100 public timeout 1 oid 1.3.6.1.2.1.1.1.0" } RESULT]
           { error $RESULT $errorInfo  }
           else { set SnmpSysDesc $RESULT }
    if [catch {cli_close $cli1(fd) $cli1(tty_id)} RESULT] {
                error $RESULT $errorInfo
    puts $SnmpSysDesc
    =========================================================================
    In the sho-run config I have:
    event manager directory user policy "flash:/"
    event manager session cli username "cisco"
    Any help to get me started would be greatly appreciated!
    Tim

    If you don't want an EEM policy, then don't use any of the EEM constructs.  Instead, all you need is this:
    set output [exec "snmp get v2c 192.168.1.100 public timeout 1 oid 1.3.6.1.2.1.1.1.0"]puts $output

  • Call  RFC from ECC and display the values in  AET

    Hi ALL,
    I had an RFC in ECC ( Z_CRM_SPEC_DATA) this should be called into my AET Fields in getter method.
    In getter method of tat AET field what code should i write?
    Plz help me on this.

    HI,
    1) Call the  RFC(Z_CRM_SPEC_DATA) from ECC and display the values as mentioned in below AET fields.
    AET FIELDS :    zzfld00000M    zzfld00000N
    Description  :    Budget Quan    Forecast Quan
    values         :    (--5.0)(6.0--
    2) (Fetch Budget and Forecast data from ECC ),you would need to pass Material Number(MATNR) as well as Ship to party info to fetch the budget and forecast data as one material may be assigned to 2 or more SH with specific budget and forecast data for each.
    Edited by: venkatabharathv on May 23, 2011 2:44 PM
    Edited by: venkatabharathv on May 23, 2011 2:49 PM

  • How do I click on a cell in a table control, and display the value in a string?

    What I would like to do is to click on a cell in a table control, and have the value of the cell be displayed in a string indicator. What ever cell I click on, I would like the value to be displayed in the indicator.
    Thank you!
    Solved!
    Go to Solution.

    ... or
    Event >>> ouse down for table.
    Use Coords" to feed invoke node "point To Row Column" and returned "Cell Postion" can be unbundled to produce the row and column tht can be used to index out the value.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to retreive and display return value from BAPI

    Hello,
    I am using SUP to create a sales order application. In my MBO I have a create operation which calls a BAPI to create a sales order. How can I retrieve the return value (saled doc number) and display it on a screen and display it as an Alert of BB application.
    Regards
    Nidhideep Bhandari

    Hi David Brandow,
    I have tried your solution where I just created a MBO for my 'operation' and I'm using sync parameters to execute the RFC.
    The problem I'm facing is, for example, if I create a record it gets saved in the MBO table and the record successfully gets created in SAP as well after a sync. But when I create another record and sync, the previously saved record in MBO table also gets executed so I'm getting duplicate entries in SAP.
    Have you or anyone faced this problem?
    Any response is appreciated. Please let me know if I'm not clear, I realized its a complicated scenario.
    Thanks,
    Sandeep

  • Can i pass plsql table as parameter in a report and display the values

    Hi.I have a form with five text items.
    Also inside the form I have a button and when I push the button the trigger fires(WHEN BUTTON PRESSED) and the values of the form passed and display in the report.Is it possible to have in the form a detail for example with three rows and three columns and with some way(mayby as plsql table) pass all the parameters from the form to report and then display in the report?I asume the report is a tabular report.
    Thanks in advance Panagiotis.

    Hi Nigel,
    By default, SharePoint will display folder icon for document sets in the search results.
    If you need to change this icon in search results, then you can modify the display template for document sets.
    http://blogs.technet.com/b/tothesharepoint/archive/2013/09/04/understand-how-search-results-are-displayed-in-sharepoint-server-2013.aspx
    How did you set query in the Result Source?
    I tested the query below in the result source in my environment, and it worked fine.
    {searchTerms}ContentTypeID:0x0120D520*
    I recommend to check if the document sets have been crawled in crawl log.
    If not, please run a full crawl in Search Service Application and then check the results.
    Best regards.
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Read integer values from spreadsheet and display the values in a table

    Hi all,
    I have integer values to read from a spreadsheet and display them in a table. I am using 'Read from spreadsheet file' in 'integer' mode. I would like to display these values in a table. The problem is that the table takes only 2d-array of string as input but not integer.  
    It works fine if I change the mode of 'Read from spreadsheet file' from 'integer' to 'string' but I want to read integers and have to use the integer values for further calculations. Please give any suggestions on displaying integers to a table.
    Thank you. 
    Solved!
    Go to Solution.

    No don't take element by element just convert as a whole. See the attached example
    Good luck
    The best solution is the one you find it by yourself

  • Calling and displaying BAPI  values when the initial view is displayed

    hi Gurus,
    I am creating an application where I am calling a BAPI.
    Now my problem is that the values should be called and displayed when I am starting the application ie in the first view itself.
    Is there any way to execute the BAPI so as to retrieve the values from back end and get the values displayed in the initial screen/view.
    Or else is there any onPageLoad method which can be used in such cases.
    please help me how to go ahead.
    Thanks and regards,
    kris

    Hi
    Create a method in controller and insert the code,
    wdContext.current<BAPI>Element().modelObject().execute();
    And call the method in view, and check the size of BAPI's output node.If it is greater than 0, your BAPI is returning something. using any loop and get the Output
    Saravanan K

  • WebLogic 9.2MP2.Messages Pending topic count JMS display negative value

    on admin console. Services -> Messaging -> JMS Modules in JMS System Modules -> JMS queue name -> Monitoring role tab .
    I use WebLogic 9.2MP2 version . I found that JMS destination summaize page, Messages Pending topic count display negative value.
    What is mean negative value ? or that bug of WebLogic9.2 MP2.
    Thank you.
    BR,

    A negative value indicates a bug -- quite likely in internal statistics gathering code itself. I don't know if the problem has been addressed in later MPs or later versions.
    Tom

  • How do I count and display events every few seconds and then convert the counted values into events per minute? (for a heart rate monitor)

    Hi everyone,
    I'm building a heart rate monitor as a final year project with my lab partner using the NI USB-6009 and Labview 2009. We have managed to obtain a signal using a photo transciever, smooth it out and count the events, however the count is incremental.
    We wish to count the number of pulses we obtain for a few seconds (5-10 for example) and then use this value to obtain a pulse rate in beats per minute (e.g. 10 pulses in the first 10 seconds would give an estimated BPM of 60 etc etc).
    Does anybody have ides on how we could implement this? We have tried timed loops, elapsed time VI's and other things but nothing gives us what we need.
    Thanks in advance for any help that is offered.
    Jeshua Graham.

    We are very new to Labview. We are taking a raw signal from our DAQ and then using VIs to filter and then trigger counts on rising edges. I have attached our vi file to this post for you to look at (I hope that is what you mean by code).
    Attachments:
    TCRT-1010DAQ_jeshua1.vi ‏367 KB

  • How to count and display the number of records in a database table

    My webpage has a list of items and their details, every item has a button
    Read / Make comments that loads the item in its own page displaying
    a comments form and previous comments.
    This is all working fine.
    I would like to add to each item information stating how many comments have
    been made about that item.
    Allowing the user to see before hand if it is worth while clicking on the
    Read / Make comments button.
    Ideally each item will have a different number of comments.
    The problem I have is outputing the number of comments associated with each item.
    My comments table is called guest my items table is called titles.
    I'm sure mysql statement is correct -
    The table guest currently has 7 comments,
    Item 1 has 3 comments
    Item 2 has 2 comments
    Item 3 has 1 comment
    Item 4 has 1 comment
    When I test the query in dreamweaver
    $Recordset1 = "SELECT COUNT(guest.software_id) as COUNT, titles.id FROM titles LEFT JOIN guest ON titles.id = guest.software_id GROUP BY guest.software_id";
    the outoput is a list showing 2, 3, 1, 1
    My problem is, getting the totals into my repeat region.
    I tried the following line
    <td align="left" valign="top" bgcolor="#e5f8cb">Current comments:<?php echo $row_Recordset1['COUNT']; ?></td>
    resulting in all comments so far displaying 0
    I have highlighted in bold the parts that I am having difficulty with.
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_rsTitles = "-1";
    if (isset($_GET['id'])) {
      $colname_rsTitles = $_GET['id'];
    mysql_select_db($database_abe, $abe);
    $query_rsTitles = sprintf("SELECT title, company, `description`, resources, location, url, image, keyword, copies FROM titles WHERE id = %s ORDER BY id ASC", GetSQLValueString($colname_rsTitles, "int"));
    $rsTitles = mysql_query($query_rsTitles, $abe) or die(mysql_error());
    $row_rsTitles = mysql_fetch_assoc($rsTitles);
    $totalRows_rsTitles = "-1";
    if (isset($_GET['id'])) {
      $totalRows_rsTitles = $_GET['id'];
    $colname_rsTitles = "-1";
    mysql_select_db($database_abe, $abe);
    $query_rsTitles = sprintf("SELECT title, company, `description`, resources, location, url, image, keyword, copies FROM titles WHERE id = %s ORDER BY id ASC", GetSQLValueString($colname_rsTitles, "int"));
    $rsTitles = mysql_query($query_rsTitles, $abe) or die(mysql_error());
    $row_rsTitles = mysql_fetch_assoc($rsTitles);
    $totalRows_rsTitles = mysql_num_rows($rsTitles);
    mysql_select_db($database_abe, $abe);
    $query_rs_comments = "SELECT * FROM guest";
    $rs_comments = mysql_query($query_rs_comments, $abe) or die(mysql_error());
    $row_rs_comments = mysql_fetch_assoc($rs_comments);
    $totalRows_rs_comments = mysql_num_rows($rs_comments);
    mysql_select_db($database_abe, $abe);
    $query_rs_users = "SELECT * FROM users";
    $rs_users = mysql_query($query_rs_users, $abe) or die(mysql_error());
    $row_rs_users = mysql_fetch_assoc($rs_users);
    $totalRows_rs_users = mysql_num_rows($rs_users);
    mysql_select_db($database_abe, $abe);
    $query_Recordset1 = "SELECT COUNT(guest.software_id) as COUNT, titles.id FROM titles LEFT JOIN guest ON titles.id = guest.software_id GROUP BY guest.software_id";
    $Recordset1 = mysql_query($query_Recordset1, $abe) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    mysql_select_db($database_abe, $abe);
    if(!isset($_POST['softwareLevel'])){
    if (!isset($_GET['class_id'])) {
    //show all software titles
    $query_rsTitles = "SELECT id, title, company, `description`, resources, location, url, image, keyword, copies FROM titles ORDER BY id ASC";
    }else{
    //show software titles filtered by Literacy of Numeracy (using URL GET variable)
    $query_rsTitles = "SELECT id, title, company, `description`, resources, location, url, image, keyword, copies FROM titles WHERE titles.class_id = ". GetSQLValueString($_GET['class_id'], "int") ." ORDER BY id ASC";
    }else{
    //show software titles filtered by Level (using Form POST variable)
    $query_rsTitles = "SELECT id, title, company, `description`, resources, location, url, image, keyword, copies FROM titles WHERE titles.level_id = ". GetSQLValueString($_POST['softwareLevel'], "int") ." ORDER BY id ASC";
    $rsTitles = mysql_query($query_rsTitles, $abe) or die(mysql_error());
    $row_rsTitles = mysql_fetch_assoc($rsTitles);
    $totalRows_rsTitles = mysql_num_rows($rsTitles);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <?php $pagetitle="ABE Software Locator"?>
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title><?php echo $pagetitle ?></title>
    <link rel="stylesheet" href="../../includes/styles.css" type="text/css" media="screen" />
    <style type="text/css">
    body {
    background-color: #FFF;
    </style>
    </head>
    <body>
    <?php include("../../includes/header.php"); ?>
        <div><table width="70%" border="0" align="center" cellpadding="3" cellspacing="0">
      <tr>
        <td width="29%" height="50" align="center"><a href="software_detail.php">Back to Locator</a></td>
        <td width="50%" align="center"><a href="../../index.php">Welcome Page</a></td>
        <td width="21%" align="center"><a href="../../logout.php">Log Out</a></td>
      </tr>
      <tr>
        <td colspan="3" align="center"><strong> There Are <span class="totalrecordsnumber"><?php echo $totalRows_rsTitles ?></span>  Software Titles Listed</strong></td>
      </tr>
      <tr>
        <td> </td>
        <td> </td>
        <td> </td>
      </tr>
    </table>
        <?php do { ?>
          <table width="820" border="0" align="center" cellpadding="3" cellspacing="2">
            <tr>
              <td width="206" height="200" rowspan="3" align="center" bgcolor="#FFFFFF"><img src="images/<?php echo $row_rsTitles['image']; ?>" alt="<?php echo $row_rsTitles['title']; ?>" /></td>
              <td colspan="3" align="center" bgcolor="#086b50"><h2><?php echo $row_rsTitles['title']; ?></h2></td>
            </tr>
            <tr>
              <td colspan="3" align="center" bgcolor="#f6b824"><strong>Made by:</strong> <?php echo $row_rsTitles['company']; ?></td>
            </tr>
            <tr>
              <td colspan="3" align="left" valign="top" bgcolor="#e5f8cb"><p class="ptaglineheight"><strong>Description: </strong><?php echo $row_rsTitles['description']; ?></p></td>
            </tr>
            <tr>
              <td colspan="2" align="left" valign="top" bgcolor="#e5f8cb"><span class="tabletext"><strong>Keywords</strong></span><strong>: </strong><?php echo $row_rsTitles['keyword']; ?></td>
              <td colspan="2" align="left" valign="top" bgcolor="#e5f8cb"><strong>Resources:</strong> <?php echo $row_rsTitles['resources']; ?></td>
            </tr>
            <tr>
              <td colspan="4" align="left" valign="top" bgcolor="#e5f8cb"><strong>Web Address:</strong> <a href="<?php echo $row_rsTitles['url']; ?>" target="_blank"><?php echo $row_rsTitles['url']; ?></a></td>
            </tr>
            <tr>
              <td colspan="3" align="left" valign="top" bgcolor="#e5f8cb"><strong>Is installed on:</strong> <?php echo $row_rsTitles['location']; ?></td>
              <td width="195" align="left" valign="top" bgcolor="#e5f8cb"><strong>Copies available:</strong><?php echo $row_rsTitles['copies']; ?></td>
            </tr>
            <tr>
              <td colspan="3" align="left" valign="top" bgcolor="#e5f8cb"><a href="fulltitle.php?software_id=<?php echo $row_rsTitles['id']; ?>&amp;id=<?php echo $row_rsTitles['id']; ?>">Read / Make Comments About This Software</a></td>
              <td align="left" valign="top" bgcolor="#e5f8cb">Current comments:<?php echo $row_Recordset1['COUNT']; ?></td>
            </tr>
          </table> 
          <br />
          <?php } while ($row_rsTitles = mysql_fetch_assoc($rsTitles)); ?>
        </div>
        <?php include("../../includes/footer.php"); ?>
    </body>
    </html>
    <?php
    mysql_free_result($rsTitles);
    mysql_free_result($rs_comments);
    mysql_free_result($rs_users);
    mysql_free_result($Recordset1);

    I changed the mysql as you suggested GROUP BY titles.id
    and added a while loop to iterate over the data
    mysql_select_db($database_abe, $abe);
    $query_Recordset1 = "SELECT COUNT(guest.software_id) as COUNT, titles.id FROM titles LEFT JOIN guest ON titles.id = guest.software_id GROUP BY titles.id";
    $Recordset1 = mysql_query($query_Recordset1, $abe) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    $row_Recordset1 = mysql_query($query_Recordset1) or die(mysql_error());
    <td>Current comments:<?php
    if($row_Recordset1)
    while($row = mysql_fetch_array($row_Recordset1))
    echo $row['COUNT'];
    } ?></td>
    The first item now displays the following,
    comments:2311000000000000000000000000000
    all others
    comments:
    the number matched the database table exactly, 30 records 4 of which have 2, 3, 1, 1 comments.
    It looks as if the problem is trying to get the repeat region to pick up on it!

  • Call Web Service and display return values in table

    Hi all,
    I am calling a self-implemented web service with visual composer. The webservice returns the following data shown below.
    Each item like carID, carBrand etc. should be displayed in an output table.
    The problem is, that he doesn't display any data at all. Is there a problem with the webservice data which is returned or do I have to do some further settings in visual composer?
    Thank you for your help! Kind regards, Patrick.
      <?xml version="1.0" encoding="utf-8" ?>
    - <ArrayOfCar xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://IBM-W2003-EAI/GetCarList">
    - <Car>
      <CarID>A-471</CarID>
      <CarBrand>Alfa</CarBrand>
      <CarModel>156</CarModel>
      <Kw>100</Kw>
      <Ps>136</Ps>
      <Km>79000</Km>
      <Year>1998</Year>
      <Price>7500,0000</Price>
      <Url />
      <Status>Available</Status>
      </Car>
    - <Car>
      <CarID>A-736</CarID>
      <CarBrand>Audi</CarBrand>
      <CarModel>A4</CarModel>
      <Kw>110</Kw>
      <Ps>150</Ps>
      <Km>87000</Km>
      <Year>2000</Year>
      <Price>15780,0000</Price>
      <Url />
      <Status>Reserved</Status>
      </Car>
    </ArrayOfCar>

    Hi Shai,
    the webservice is working well, trying to test it with webservice navigator.
    He also returns the correct number of rows (because there appears slider beneath the table output and I also counted the rows), but there is no data displayed in visual composer.
    I have got no further ideas, what the problem is...
    THank you for your support.
    Kind regards, PAtrick.

  • Poplist and displaying corresponding values from the database table

    Hi
    I have a poplist in a control block, the values of which are populated using a procedure. This is called in when-new-form-instance.
    This part works fine and values are filled in the poplist when form is opened..
    The datablock is based on a view. 3 columns from the view are selected to be displayed.
    Also the databock is filled with all values (for selected columns)
    Now when the poplist value is changed, I need the values in the datablock to be changed as well, but this is not happening.
    In my when-list-changed trigger, I have:
    go_block('datablock');
    execute_query;Please tell , where and what should I add to display the datablock values as per the poplist value.
    i.e, something like,
    select col1,col2,col3 from <view> where col4 =:control.col4
    Note:I tried in the where clause property of the block, but then nothing is displayed in the datablock
    Thanks

    This does not work , either..
    Before, when I changed the values from the list, it was still displaying same data on datablock always(all records)
    Now when I give this code,data is displayed in datablock only once(first time when the form opens)
    I have defined the Query data source type property on data block as "Table" but infact this datablock is based on a view..is this correct?
    Anything else I could try?

  • Play count and display

    Since the latest upgrade of Itunes the play count of many of my tracks has automatically reset to 0 for some unknown reason.  Also I display Track Name/Artist/Album on my Itunes and on a number of occasions they display incorrect information and when I click on Get Info for that track and click back out of it it shows the correct information (It's usually transfers over what's in the Sort Album/Title Name etc into the Album/Title Name field on the main display).  So weird!  Anyone else had this?  Hope I've explained myself clearly!

    I have the same issue with my Ipod Shuffle & Itunes.
    Is there a resolution to this problem?
    Thanks.

  • Add and display numerical values chosen by user - advanced actions?

    I am creating a course that includes a quiz. What the customer wants is for the users to view a case study, and then give scores based on a scale with multiple descriptors; the quiz will then total the scores or rankings that the user inputs.  It would look like this (here are samples of the first few questions; there are 6 of these in all, plus slide 32):
    Slide 30
    1. Based on the case study and the chart on this slide, what is the patient's Mobility score?
    (the user enters a number from 1-4 in a text entry box, or selects a button or radio button indicating the patient's score)
    Slide 31
    2. Based on the case study and the chart on this slide, what is the patient's Activity score?
    (user chooses an answer, which is a number one through four)
    Slide 32
    (A total_score text box at the top of the screen shows the cumulative total of the user's inputs from slide 30 and slide 31. For example, if the user typed "2" into the TEB on slide 30, and typed "3" on slide 31, then the number in the total_score box would say "5")
    3. Based on the cumulative score you gave this patient, what is the appropriate action?
    (The user then has to choose the correct answer from a list of 5 options. The correct answer is based on the number displaying in the total_score text box. If the score is a 2, they must choose option A, but if the score is an 8, they must choose option E.)
    In reality, then, there are three parts to this:
    1. Questions 1 & 2 each have a correct answer, and the user is graded on these answers for the quiz.
    2. The actual values they choose are tallied on slide 32, regardless of whether they chose the correct responses.
    3. The correct answer for question 3 depends on the number that appears in the total_score box on slide 32. If that's too hard, I can re-work the wording of the question to avoid this requirement, so that there will be just one correct answer for question 3, regardless of what the user had entered for the other questions.
    I have been trying to learn about Advanced Actions, but even finding online help/tutorials is hard when I'm using the archaic version of the software. It looks like the big difference between versions is not increased functionality in terms of the Advanced Actions; the difference to me looks mostly cosmetic, with that wizard in 5 that helps you write the scripts, while in 4 you have to type them out manually. So I don't think that I'm too handicapped by the technology. The hard part is figuring out how Captivate uses the advanced actions and how to connect it all together.
    My first question is, Can this be done in Captivate?  Or should I stop wracking my brains and turn to another tool (keeping in mind that my knowledge of flash, java and the like is almost zero)?
    If it can be done, can anyone offer any help in creating the appropriate variables and actions?
    I appreciate any help that can be offered.

    Thanks, Jim!
    So, here’s how I understand the steps I need to take:
    Create 6 slides, one for each question. Create captions and other elements to frame the question.  Create a Text Entry Box, one on each of the question slides, where the user will record their answer to each question.
    Create a caption on the first question slide where the total score will be compiled. Display this object for the rest of the project.  Type $$v_total$$ in the text of the caption.
    Create one variable for each question.
    Create an advanced action that adds all of the associated variables into the v_total variable.
    Apply the advanced action to the appropriate quiz slides.
    I was able to duplicate what you sent me, so I know that it works.
    One follow-up question:  If users want to retake the quiz, I need another action that will reset the v_total variable to zero, right? Where do I apply this advanced action?

Maybe you are looking for

  • 11.5.10.2 install problems

    Hoping that someone in here can provide assistance. I am trying to install 11.5.10.2 on Mandriva 2007. It errors out at the installation of the DB. Sorry, far from an expert when it comes to DBA activities. The problem seems to be around libc.so.6. H

  • Call Function - Dest "RFC"

    Hello, i have a big problem. I´ve written a web dynpro programm. In this program i call a function: CALL FUNCTION 'READ_DAT' DEST 'Z_READ_DAT". Z_READ_DAT is a RCF which points on a exe file on my pc. When is use this Function in SAPGUI all works fin

  • How do I reset the "Firefox is being updated by another instance" message?

    I was attempting to update Nightly via the "About Nightly" window. I got a message about a failed upgrade and a link to download a fresh copy of Nightly, so I did. I closed Nightly and overwrote my existing copy with the fresh download and reopened.

  • Receiver determination did not find any receiver at all while using ICO

    Hi Experts, I'm getting this error in one of our sender SOAP channels. It's Web Service (SOAP) - PI - Proxy (SOAP) scenario using ICO. Have you come across this problem before? What should I check? Thanks in advance. Mahi

  • Import photos from source other than iphoto

    Is there a way to import photos to imovie from a source other than iphoto or photo booth? I have a cd of pics that i'd like to use but I'd rather not import all the pics to iphoto if I don't have to. thanks