Bargraph,icon and a numeric value, together in a single column of advance datagrid

Hiii,
I am trying to embed an icon, a bargraph with two values and a numeric value in a single column of advance datagrid. can anybody help me out in giving a solution for this...I have read a  blog where the code explains about the bargraph in advance datagrid, I want to embed numeric value and icon too including bargraph in the column. I am looking for a Bargraph which  takes two values
In the above image, the graph and rate is shown in a separate column , I require graph to be shown along with the numeric value and a icon in a single column.
The blog which i refered and got the above output is placed below, it can be used for the reference.
http://symmetri.blogsome.com/2009/05/22/render-a-bar-graph-within-a-datagrid/

RVR,
This is a great exercise to get familiar with LabVIEW's array functions.  A great place to start is actually the LabVIEW help on arrays, located here:
http://zone.ni.com/reference/en-XX/help/371361B-01/lvconcepts/grouping_data_with/
Depending on your data format, you can probably use the Read From Spreadsheet File VI to bring your data into a 2-d array.  You could then use the index array VI to pull your column out.  You could do this in a For loop and use Autoindexing to build your 1,000 column resulting array.  I would leave everything as a String format until I'm done. 
This doesn't sound like a very difficult task.  Good luck!
--Paul Mandeltort
Automotive and Industrial Communications Product Marketing

Similar Messages

  • Form error Invalid numeric value 06-Jun-13 for column FECHA_CAPTURA

    hi,
    i have an APEX form that updates a table. The form items were created autmatically from the table fields. The 3rd field is a date field and therefore the corresponding date field on the form has a calender icon on its right side. i choose a date from this calender and when i hit the update button i receive this message:
    Invalid numeric value 06-Jun-13 for column FECHA_CAPTURA
    any ideas?

    Hi,
    Could we get you to change 1010319 to a meaningful handle -- I'm Howard.
    In order to give helpful answers, we usually need more information including as much relevant information as possible upfront. This should include:
    Full APEX version
    Full DB/version/edition/host OS
    Web server architecture (EPG, OHS or APEX listener/host OS)
    Browser(s) and version(s) used
    Theme used
    Template(s) used / modified -- (Revelant/important for some problems.)
    Region/item type(s)
    and more detail about what you want to do.
    Are you using ARP (Automatic Row Processing)?
    Do you do any validations?
    Could you make a trival 1-page application on apex.oracle.com duplicating the problem there?
    Howard

  • Popup Key LOV, NULL and "Invalid numeric value undefined for column"

    Hello.
    I've created an item based on database column of NUMBER type and set the following properties:
    Display As = Popup Key LOV (Displays description, returns key value)
    List of values definition=select 'display_value' d, 1 r from dual
    Null display value=%
    Null return value=
    Display Null=Yes
    When I select "%" in the LOV and try to apply changes to database I get error:
    ORA-20001: Error in DML: p_rowid=1781, p_alt_rowid=N1, p_rowid2=, p_alt_rowid2=. ORA-20001: Invalid numeric value undefined for column N2
    Error Unable to process row of table TTT.
    If I set Display As = Select List, all works fine. But I need Popup Key LOV.
    Could anybody help me?
    I use Application Express 2.2.1.00.04

    Hi all,
    I did my homework and solved this issue. First I would like to thank Patrick Wolf for the invaluable help he gives out on thread Re: Null value handling in LOVs The code presented here is just a minor edit to his code, but an essential one when dealing with Popup Key LOV items.
    Here's what I did:
    1. Create an Application Process.
    Name: RemoveNulls
    Sequence: 0
    Point: On Submit: After Page Submission - Before Computations and Validations
    Process Text:
    BEGIN
        FOR rItem IN
          ( SELECT ITEM_NAME
              FROM APEX_APPLICATION_PAGE_ITEMS
             WHERE APPLICATION_ID   = TO_NUMBER(:APP_ID)
               AND PAGE_ID          IN (TO_NUMBER(:APP_PAGE_ID), 0)
               AND LOV_DISPLAY_NULL = 'Yes'
               AND LOV_DEFINITION   IS NOT NULL
               AND LOV_NULL_VALUE   IS NULL
        LOOP
            IF (V(rItem.ITEM_NAME) = '%null' || '%' OR V(rItem.ITEM_NAME) = 'undefined')
            THEN
                Apex_Util.set_session_state(rItem.ITEM_NAME, NULL);
            END IF;
        END LOOP;
    END;Error Message: #SQLERRM#Condition: None
    2. You should be able to submit a Popup Key LOV with a NULL value now.
    Once again, THANKS, Patrick! You rock! I'm seriously thinking of trying ApexLib now :)
    Georger

  • Two strings and a numeric value to write to a measurement file

    Hi all, I need to write two string values and a number value to file. I made a basic VI showing what is needed. I figured to cheat a little by sending my time stamp to the comment node. I then converted the id string to a decimal number and merged it to my numeric value. All is great with the output in Excel, accept my ID string dropped the last two digits and replaced them with a zero. Even if I used a numeric constant with this same value, it replaces the last to with zero's. The problem seems to reside with the write to measurement file VI. If I open it directly with wordpad it saves it as 2.602189E+8. Any ideas to save these three values?   Thanks
    Gerald

    When you use one of the Express VIs, you are limited to what you can do. The Write to Measurement File expects to writing measurements (numerics) and not string constants so eveything gets converted to floating point. You could probably modify it but using the lower level file I/O functions is just as simple. Here's a modification. I put the file write inside the loop because I would assume you want every value written. With your example, you would only save the very last iteration. If you do only want to save the last result, then it can be suitably modified.
    Attachments:
    time_insert_mod.vi ‏15 KB

  • Taking the kth-column of multiple files and then joining them together in a single file

    Hi
    I would like some help with array manipulation
    I have multiple (1000) files with 5 columns each and 20,000 rows. The first row of each file has a header that labels the columns.
    I would like to be able to read these files, pull out colum 3 from each file and then build these into a new 2D array. It would be nice if they also had their corresponding header labels. So then I would end up with the new 2D array containing 1,000 columns (corresponding to column 3 of each of my 1000 files) with 20,000 rows plus a first row with the header labels.
    I would also like the option to in future select column 2 for example, or column 5; plus I would also like the functionality to allow me to perhasp pull out more than one colum, e.g. colum 2 and 3, before we build the new array.
    I hope I made some sense and that someone can help. Thanks you

    RVR,
    This is a great exercise to get familiar with LabVIEW's array functions.  A great place to start is actually the LabVIEW help on arrays, located here:
    http://zone.ni.com/reference/en-XX/help/371361B-01/lvconcepts/grouping_data_with/
    Depending on your data format, you can probably use the Read From Spreadsheet File VI to bring your data into a 2-d array.  You could then use the index array VI to pull your column out.  You could do this in a For loop and use Autoindexing to build your 1,000 column resulting array.  I would leave everything as a String format until I'm done. 
    This doesn't sound like a very difficult task.  Good luck!
    --Paul Mandeltort
    Automotive and Industrial Communications Product Marketing

  • Excel source multiple column values to oledb destination single column in ssis 2012

    Excel sheet has 4 columns which is filled with data till 500 rows on each column. I want to insert those excel data into single column(PolicyIds) and am using oledb destination. In excel souce i dont hav any column header. Can anyone suggest me how can i do
    this effectively. (May be i can use script task to get range of data and use it as SQL variable). Is there any best approaches.
    Sample excel
    A          B             C             D
    1001     1005       1009        1013
    1002     1006       1010        1014
    1003     1007       1011        1015
    1004     1008       1012        1016

    Inside Excel Source, use Data Access Mode - SQL Command as below:
    select F1 from [Sheet1$] where F1 is not null
    union all
    select F2 from [Sheet1$] where F2 is not null
    union all
    select F3 from [Sheet1$] where F3 is not null
    union all
    select F4 from [Sheet1$] where F4 is not null
    -Vaibhav Chaudhari

  • 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?

  • Need to default text string values to null and leave numeric values as are

    Hi,
    This may be a simple question but I have the following query:
    select gis.province, ce.place_id
    from  cla_event ce
    Left join (select * from rbn_gis_area where version = 10) gis
    on ce.place_id  = gis.sp_codeProblem is place_id has text fields since the data is dirty and I receive there error 'ORA-01722: invalid number 01722. 00000 - "invalid number"'. I want to default any text to null. Here is some sample data.
    CREATE TABLE Temp_1 (Place_ID varchar2(50));
    INSERT INTO Temp_1(Place_ID)  VALUES (77415018)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (77305000)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (77415000)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (null)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (77423034)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (null)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (77424011)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES ('Glebwood')     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (77603002)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (77409012)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (null)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (null)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES ('AVONDALE')     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (27516000)     ;
    INSERT INTO Temp_1(Place_ID)  VALUES (10509000)     ;
    Select * from temp_1Thanks in advance!!!
    Banner:
    Oracle Database 11g Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE 11.2.0.2.0 Production"
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production

    May be this is helpful to you..
    select regexp_replace(Place_ID,'([[:alpha:]])','') from Temp_1;
    select gis.province, ce.place_id
    from  cla_event ce
    Left join (select * from rbn_gis_area where version = 10) gis
    on regexp_replace(ce.Place_ID,'([[:alpha:]])','')  = gis.sp_codeRegards,
    Dipali..

  • Splitting string separated by commas into words and assigning numerical values

    Project details :
    I have a project where a description field is being looked at and based on the values (multiple words) I have to do a vlookup from another spreadsheet to get the dates from the appropriate date fields.
    I have created a user defined function to extract keywords from a list from a table. It extracts words from the string separated by comma delimiter.
        I am thinking of assigning values something like this: cooler = 1, compressor = 2, frame = 2, change of order = b etc.
        So if there is a “cooler, compressor, frame, change of order” in the cell, then it should read as: b12 (unique values). Based on the values, I can do a vlookup on the dates. I tried sumproduct in conjuction with search function but did not
    work. Tried split function but did not quite work.
    Any help regarding this is greatly appreciated. Thank you, regards
    keywords
    engine, compressor, frame, cooler     =Keywords(Wordlist,A2) is the function I am calling
    frame, cooler
    engine, cooler, change order
    cooler

    Hi,
    You're asking this question in the wrong forum, this is a PowerShell forum.
    The Excel VBA forum is this way:
    http://social.msdn.microsoft.com/Forums/en-us/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    Side note to whoever voted up the OP - why??
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • Controlling the Boolean Controls and generating Numeric Output correspondingly

    Hello everyone,
    I am working on a project of electrode activation, here I was thinking that how could I control one electrode at a time and generate a numeric output of it correspondingly. I want to substitute each electrode with a an LED on Front Panel and generate numeric value of each LED on Block Diagram.
    So it can be divided into two parts
    1- Control the Boolean outputs
    Here, my target is that if I have 5 leds who are used as Boolean control, should be controlled in such a way that only one of them glows at a time and the remaining turns off.
    I mean that for instance if #3 was glowing and the user pressed #2 then #3 should be turned off and only #2 glows.
    2- Generating Numeric value correspondingly
    Then according to the position of LEDs I want to generate a numeric value correspondingly, like previously output 3 was coming and the output 2 comes when second LED glows.
    I request all the participants on this group to help me on it.
    Regards
    Solved!
    Go to Solution.

    Thanks very much Dennis, Its really what i need.
    But i have a bounding in the radio button to place all option together. 
    Since i am activating the appropiate electrode on the body, all the options could not come vertically or horizontally.
    So can you pls guide me how can i make my 5 electrode behave like a radio control.
    Thanks once again.

  • BEx report hangs- selecting Alpha numeric values

    I am working on the existing customer report
    customer is the selection parameter for my report.
    Issue is Customer has numerical and alpha numerical values.
    If i give parameter rangs of value is numerical
    01 - 500 query works fine
    01-50cust1
    50 cust1 - 195 cust2
    query hangs.
    Is their any way we can improve the query performance .
    for searching alphanumerica values.
    I have a workbook is built based on the query.
    morethan 6 queries attached in the sheet 1....sheet2
    each sheet has it is own query with values.
    when I refresh and execute the workbook with the customer alphanumerica values it hangs.
    Query is built based on the multiprovider.
    Please help me onthis

    Hello,
    Try exporting in the 'fully formated grids and text'. It shouldl give you the 'member alias' used in the report.
    Looks like if you export in the 'querry ready grids and text' it will show the 'member name' as in database although the report may have used the 'member alias'.
    Regards

  • How do I apply a numerical value to a word in numbers

    For example - decision maker = .75

    What is the relationship between the 'word' and the numerical value?
    If it's a mathematical relationship, your use a formula.
    If it's arbitrary, then you need a table showing the value associates with each word (or in this case, phrase).
    Formula in column B of Main:
    B2: =VLOOKUP(A,Lookup :: A:B,2)
    Filled down to B10.
    To avoid the error messages in B6 to B10, Enclose the formula in an error trap as below:
    B2: =IFERROR(VLOOKUP(A,Lookup :: A:B,2),"not found")
    This will replace the error triangle with the words 'not found'.
    Regards,
    Barry

  • Sending/Receiving Numerical Values Over Bluetooth

    LabVIEW 2009 STUDENT EDITION W/NXT TOOLKIT. I am a beginner when it comes to LabVIEW. I am working on a school project with the humanoid detecting colored marbles. I set 4 buttons for blue, green, red, and yellow on the front panel. These Boolean values would be compared to values from the color sensor on the Mindstorms 2.0 kit and send numeric values 2-5 to the NXT brick. The NXT brick would read the number and apply the number to a case. The humanoid would ask for the color selected on the front panel. A goal is to send the color detected to an indicator on the front panel. My immediate problem is after 7 hours of searching the internet and trying every vi in the toolkit, I cannot send or receive from the PC or NXT. I only have (1)NXT. Anyone with explicit instructions? Please?

    I am a Windows 7 laptop user. I am using an external Iomega bluetooth adapter that has worked fine for downloading programs to execute. Approximately 17 hours into this problem alone I found a download showing an orange vi that was loading from an NXT\Remote... folder. To complicate things I did a firmware update that erased NXTSHELL. With NXTSHELL reloaded and using the new vi, it is working. The problem now is the vi only sends text. I need to convert the boolean front panel button to either the number representing the color or the name of the color so that it asks the robot to detect blue/2, green/3, yellow/4, red/5. I need the reading vi on the NXT brick to send a True/False and the number or color name too. The included picture is a last ditch effort to get something working at 2:30a in the morning to build on today. I was barely awake. This is rigged to look like it does what it is supposed to do but is not what is intended, as stated above. Please correct or point me in the right direction.

  • Remove context and split by value.

    Hi Friends,
                            the SAP Library  seems to bge a bit tough for me. Any url where I can find easy definition to Remove context and split by value , with exampl!!
    Thanks in advance!!
    Arnab .

    Hi,
    Remove Context Simply remove the Context. SplitByValue inserts  Context.
    Case 1: Remove Context is not Used.
    Source Message:
    <Test_Out_Remove>
    <header name=u201CA">
    <item>A.one</item>
    <item>A.two</item>
    <item>A.three</item>
    </header>
    <header name="B">
    <item>B.one</item>
    <item>B.two</item>
    </header>
    </Test_Out_Remove>
    TargetMessage:
    <Test_In_Remove>
    <item>A.one</item>
    <item>A.two</item>
    <item>A.three</item>
    </Test_In_Remove>
    Case 2: Using Remove Context.
    Source Message:     
    <Test_Out_Remove>
    <header name=u201CA">
    <item>A.one</item>    
    <item>A.two</item>    
    <item>A.three</item>
    </header>
    <header name="B">
    <item>B.one</item>
    <item>B.two</item>
    </header>
    </Test_Out_Remove>
    TargetMessage:
    <Test_In_Remove>
    <item>A.one</item>
    <item>A.two</item>
    <item>A.three</item>
    <item>B.one</item>
    <item>B.two</item>
    </Test_In_Remove>
    Case 3: Without SplitByValue
    Source Message :
    <Test_Out_Split>
    <header>
    <item>one</item>
    <item>two</item>
    <item>three</item>
    <item>four</item>
    </header>
    </Test_Out_Split>
    Target Message :
    <Test_In_Split>
    <new_context>
    <item>one</item>
    <item>two</item>
    <item>three</item>
    <item>four</item>
    </new_context>
    <new_context />
    <new_context />
    <new_context />
    </Test_In_Split>
    Case4: Using SplitBYValue
    Source Message :
    <Test_Out_Split>
    <header>
    <item>one</item>
    <item>two</item>
    <item>three</item>
    <item>four</item>
    </header>
    </Test_Out_Split>
    Target Message :
    <Test_In_Split>
    <new_context>
    <item>one</item>
    </new_context>
    <new_context>
    <item>two</item>
    </new_context>
    <new_context>
    <item>three</item>
    </new_context>
    <new_context>
    <item>four</item>
    </new_context>
    </Test_In_Split>
    Reward points if needful.
    Thanks,
    RamuV

  • Display last value from a row or column?

    I'm using Numbers 09 and want to display the last value entered in a column in another table.
    For example in Table A I have columns set up by date with simple sums at the bottom of each column. I add new sums every day depending on the values from that day. What I'd like to do is get the last daily total and enter that value into another table called Table B. Is there a formula that will do that?
    If I'm not being clear enough please let me know what additional information you need and I will be happy to provide it.
    Thanks,
    rkaufmann87

    rkaufmann87 wrote:
    Hi Barry,
    Thanks for posting the example, not quite though. In your sample Table A is transferring all the totals to Table B. What I'd like is as I enter the data in the columns in Table A Table B then picks up the latest update in a single cell. For example lets say Table A's Column A is May 1 and the total is 45, let's say that sum is placed in A15. Table B automatically picks up A15 from Table A and makes a duplicate in Table B cell A1, then the next day Table A's Column B is May 2 and the total is 90 (cell B15), then Table B senses the latest total is 90 and enters that in cell A1 again. Is this possible?
    Here's another go.
    Table 1 has a second Header row added (row 2) Cells in this row contain the formula
    =IF(A1=MAX($1:1),COLUMN(),"")
    Which returns the column number of the cell in row 1 containing the latest date. (4) This number is used by Table 2 to determine the column from which to return the total in the bottom (footer) row. (see below)
    A1 in Table 2 and Table 3 contain the same formula:
    =MAX(Table 1 :: $1:1)
    This returns the latest date from row 1 of Table 1.
    A2 in Table 2 and Table 3 contain formulas that return the value in the bottom cell of the column containing the latest date in row 1.
    Table 2:   =OFFSET(Table 1 :: $A$1,ROWS('May 1, 2010')-1,MAX(Table 1 :: $2:2)-1)
    Table 3:   =OFFSET(Table 1 :: $A$1,ROWS('May 1, 2010')-1,COUNT(Table 1 :: $1:1)-1)
    Both use the same base ($A$1) and the same row offset (ROWS('May 1, 2010')-1) to reach the bottom row of Table 1.
    Table 2 uses the maximum (and only) numerical value in row 2 of Table 1 ( MAX(Table 1 :: $2:2) ), then subtracts 1 to reach the fourth column of table 1.
    Table 3 uses the same means to determine the row offset, but counts the number of dates entered into row 1 of Table 1 ( COUNT(Table 1 :: $1:1) ), then subtracts 1 to reach the same cell.
    I prefer the method in Table 3 because it avoids the need for the second Header row and the possibility of overwriting the formulas in that row. (Row 2 of Table 1 may be deleted without affecting Table 3.) It does require that there be no empty cells in Row 1 from Column A to the column containing the latest date.
    Regards,
    Barry

Maybe you are looking for

  • Crystal Report - problem with passing parameters from J2EE app

    i'm trying to pass a few parameters from my java application to a crystal report using the code below: ParameterField pfield1 = new ParameterField(); ParameterField pfield2 = new ParameterField(); Values vals1 = new Values(); Values vals2 = new Value

  • View - simulate download is not in my Flash

    hi, i create one progess bar but it finishes very fast. how to set up exactly as new page is open. one more problem is: In my VIEW menu bar, i could not see Bandwidth Profiler, Streaming Graph, Frame by frame graph, Simulate Download, Download Settin

  • WRT54G and iMac

    I had no problems with the wireless router before, my Macbook Pro can connect successfully. I recently bought a new iMac and I've been trying to connect to the internet through a wireless connection. I keyed in the WEP key but for some reason, the In

  • How much data does 'geofencing' use?

    If I don't have an unlimited data plan, should I be worried about using geofencing while I am not using wifi? Manny

  • ADF security from Datababse

    Hello , I am using JDeveloper 11.2.3.0. I am using ADF security and I am using DB tables for authentication. I created the DB authentication in th weblogic and I inserted the SQL queries in the provider configuration. In the ADF app , I enabled adf s