Applying formula to two columns of data

Hi,
I've started to use DIAdem and it appears very powerful.  Comparision between different data channels
is straightforward and the built in functions are useful.  What I'm comparing with with the older way I
analysed data within EXCEL.  To deduce INL and DNL from raw data of a DAC.  See attached how the
formula has been applied to some dummy data I made up of a 3 bit DAC!  Anyhow I'm wondering if there
is a correspondingly easy way to implement this formula in DIAdem.  Any help appreciated.  I'm played
around with the calculator a little but to no avail.
Thanks,
Mike
Attachments:
INL+DNL results.xlsx ‏14 KB

Michael,
I took your Excel file and tried to recreate the exact same thing in DIAdem 2010.
Here's what I did:
The Excel function that subtracts values within a column from each other can be replaced by the "Calculate Differences" function in DIAdem ANALYSIS (ANALYSIS > Basic Mathematics > Calculate Differences). That creates a new Channel I called "Delta" in my DIAdem Data Portal.
The next thing I did was add the LSB value as a property to a data channel (in my case I added it to "Readings" as a custom property).
The next step was to go to ANALYSIS and select the Calculation Manager from the toolbar. I added two calculations to the calculation manager, one for DNL and one for INL.
And here is the INL calculation:
That's what got me the same results you have in Excel ...
Ask if you have further questions,
      Otmar
Otmar D. Foehner
Business Development Manager
DIAdem and Test Data Management
National Instruments
Austin, TX - USA
"For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

Similar Messages

  • How do I compare two columns of data in Numbers to find the unique results?

    Hello all,
    I'm looking for a way to compare the data from two columns so I can find the unique results and display that data in a third column. To be specific, here's what I'm doing.
    Column A is a list of email addresses for people I have already written. Column B is a list of email addresses for people I would like to contact. I am not sure if there are email address from Column A in Column B, but there may be and if there are, I must find out so that I don't send a second email to these recipients. How can I have Numbers look at both columns and tell me which email addresses in Column B are not in Column A?
    Thanks for the help!!!

    gfmp123,
    Here's an alternate use of MATCH to find duplicates. I hope you find one of the two solutions, Wayne's or this one, useful for your case.
    The expression in Column C is:
    =IFERROR("Dup in Row "&MATCH(B, A,0), "")
    Regards,
    Jerry

  • Apply formula to entire column

    I am putting together a spreadsheet using Numbers 09.  I can apply a formula to an individual cell. I want to add the revenue in C2 + E2 to give me a sum in F2.  What I want to do is apply the formula to all of the cells in  Column F.    I know there is a way to apply a formula for every cell in Column F as i have done this before.  I can't remeber how I did it.  Any suggestions?

    Waughaw,
    There are two ways to do this:
    1. Enter the expression in F2. In your case the expression would be:
    =C+E
    Copy the F2 Cell. To do this reliably, you can click off F2, then click once on F2 to highlight the cell (not the content of the cell) and Command-C.
    Then Click on the Column Tab (the letter F in this case). This Selects the entire column. Command-Click on the Header cell to De-Select just that cell. Finally, Command-V. Your formula will now be inserted in every cell of Column F except the Header Cell.
    2. Enter the expression in F2.
    Again, the expression will be C+E
    Select the cell F2, as  above, and then examine the border of the cell.
    There will be a small open circle in the lower right corner of the cell. That's called the Fill Handle.
    Drag the Fill Handel to the bottom of the column.
    That's it.
    Jerry

  • Apply FORMULA in PLD.

    Hi,
    In PLD how can I calculate below values:-
    1.Sum((Column "X" - Column "Y") <= 0)
    2.Sum((Columnm "X"- Column "Y") > 0)
    Desc:Column X minus Column Y and value of the expression should be greater,less than and equal to zero.
    Sum of (Column X minus Column Y and value of the expression should be greater,less than and equal to zero.)
    Please reply ASAP
    Regard's
    Amit Tyagi

    Hello,
    Thanks for your response
    I create a report via query generator and in that report there is two column "Delivery Date" & "First Dispatch Date".
    What customer want   field(Complete on time dispatch value) in the repetive footer area which will show  sum of delivery dates minus  first dispatch dates less than equal to Zero.
    I worked and I generate out one formula
    ColSum(Datediff(dd,"Field_207","Field_208")<=0) but it is not working
    Please reply me ASAP.
    Thanks & Regard's
    Amit Tyagi

  • Update column based on two columns

    Hi,
    MinValue     MaxValue    Desc
    -1                -1    
    -1                 1    
    -1                 2    
    0                  0    
    0                  1    
    0                  2 
    The above is my table which is having three columns MinValue, MaxValue, Desc. First two columns have data and I need to update the 3rd column 'Desc' based on two columns data.
    I need to update like,
    when MinValue=-1 and MaxValue=-1 then 'NotSpecified'
    when MinValue=-1 and MaxValue=1 then 'Up to 1'
    when MinValue=-1 and MaxValue=2 then 'Upto 2'
    when MinValue=0 and MaxValue=1 then 'At lest 1'
    when MinValue=0 and MaxValue=2 then 'At least 2'
    when MinValue=0 and MaxValue=3 then 'At least 3'
    The data in 'MaxValue' is like 1,2,3,4,5...50. So for each description it should append this value as mentioned above(till 'Up to 50', 'At least 50'). How can I do this with case statement?
    Thanks,
    Gangadhar

    declare @T table ( MinValue int,MaxValue int, [Desc] nvarchar(100) );
    insert @T ( MinValue, MaxValue )
    values ( -1, 1 ) , ( -1, 1 ) , ( -1, 2), ( 0, 0), ( 0, 1), ( 0, 2)
    select *
    from @T
    update @T
    set [Desc] = case
    when MinValue=-1 and MaxValue=-1 then 'NotSpecified'
    when MinValue=-1 and MaxValue=1 then 'Up to 1'
    when MinValue=-1 and MaxValue=2 then 'Upto 2'
    when MinValue=0 and MaxValue=1 then 'At lest 1'
    when MinValue=0 and MaxValue=2 then 'At least 2'
    when MinValue=0 and MaxValue=3 then 'At least 3'
    end
    select *
    from @T
    T-SQL Articles
    T-SQL e-book by TechNet Wiki Community
    T-SQL blog

  • JTable - One Column Heading for Two Columns

    Can you adjust the default JTable to have one column heading for two columns of data? Is there a simple span command? I've looked at the api for JTable and JTableHeader and didn't see anything, is there something I'm missing? Any help would be appreciated.

    What i am trying to accomplish is have column 'E' span 2 columns.
    This is my code thus far, however it give the error from my pryor message. I am pretty sure it is because I'm using and Object[][] and a String[] instead of Vectors. What corrections do I need to make in order for my goal of:
    [ A ][ B ][ C ][ D ][ E  ][ F ][ G ]
    [ 1 ][ 2 ][ 3 ][ 4 ][5][6][ 7 ][ 8 ]
    Object[][] data = new Object[ROWS][COLUMNS];
    String[] columnNames = {"A","B","C","D","E","E","F","G"};
    table = new JTable(data, columnNames);
    table.setBackground(Color.white);
    table.addKeyListener(this);
    DefaultTableCellRenderer d = new DefaultTableCellRenderer();
    d.setHorizontalAlignment(JLabel.CENTER);
    table.setDefaultRenderer(table.getColumnClass(0),d);
    for (int i = 0; i < table.getColumnCount(); i++){
    TableColumn aColumn = header.getColumnModel().getColumn(i);
    TableCellRenderer renderer = aColumn.getHeaderRenderer();
    if (renderer == null) {
    renderer = new DefaultTableCellRenderer(){
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column){
    JTableHeader header = table.getTableHeader();
    if (header != null) {
    setForeground(header.getForeground());
    setBackground(header.getBackground());
    setFont(header.getFont());
    setHorizontalAlignment(JLabel.CENTER);
    setText((value == null) ? "" : value.toString());
    setBorder(UIManager.getBorder("TableHeader.cellBorder"));
    return this;
    aColumn.setHeaderRenderer(renderer);

  • Formula that calculate two columns/text

    Good afternoon Everyone,
    I am trying to write a formula (if it exists) that will allow me to look at two different columns of data and calculate 3 pieces of information:
    1. Open items per consultant
    2. Closed items per consultant
    3. Percentage of open items based on total of open and closed items per consultant.
    example: I want it to calculate Stacy has x amount of total open items from the list. Here's part of my spreadsheet. The columns (Open Actions, Closed Actions and % Open Actions) will be a seperate table.
    Item #
    Requested Date
    Main SME
    Target Date
    Status
    Open Actions
    Closed Actions
    % Open Actions
    1
    4/28/2014
    Stacy
    6/27/2014
    Open
    2
    4/28/2014
    Stacy
    6/27/2014
    Open
    3
    4/29/2014
    Stacy
    5/29/2014
    Closed
    4
    4/29/2014
    Stacy
    5/29/2014
    Closed
    5
    4/29/2014
    Stacy
    5/29/2014
    Closed
    6
    4/29/2014
    Stacy
    10/1/2014
    Deferred to Design
    7
    4/29/2014
    Stacy
    5/29/2014
    Closed
    8
    4/29/2014
    Stacy
    5/29/2014
    Closed
    9
    4/29/2014
    Stacy
    5/29/2014
    Closed
    10
    4/29/2014
    Stacy
    5/29/2014
    Closed
    11
    4/29/2014
    Stacy
    5/29/2014
    Closed
    12
    4/29/2014
    Stacy
    6/6/2014
    Closed
    13
    4/29/2014
    Eric
    7/11/2014
    Open
    14
    4/29/2014
    Mukund
    7/11/2014
    Open
    15
    4/29/2014
    Rao
    7/11/2014
    Open
    16
    4/29/2014
    Stacy
    6/27/2014
    Open
    17
    4/29/2014
    Sriram
    5/29/2014
    Closed
    18
    4/29/2014
    Sriram
    5/29/2014
    Closed
    19
    4/29/2014
    Sumit
    6/13/2014
    Open
    Thanks in advance, Cicely

    Open items:
    =COUNTIFS(C:C,"Stacy",E:E,"Open")  
    or use a cell reference with the name "Stacy" - use this if you have a list of names you want to use and want to just copy the formula down to match the list:
    =COUNTIFS(C:C,G2,E:E,"Open") 
    Closed items
    =COUNTIFS(C:C,"Stacy",E:E,"Closed")
    Percentages:
    =Cell1/(Cell1 + Cell2)
    where Cell1 and 2 are the cells with the formulas.

  • Can I have a product formula in an entire column that will multiply the previous two columns?

    Trying to enter a product formula for an entire column that will multiply the previous two columns without having to select each row of two cells and clicking on "product".  This is tedious.  Thanks.

    My own tip to apply fill down to a column :
    click the tab at top of the column to select the entire column
    press command then click the header cells to unselect them
    Trigger Table > Fill > Fill Down
    It's the kind of info which is available in Numbers User Guide.
    It's always good practice to Read The Free Manual.
    Yvan KOENIG (VALLAURIS, France) mercredi 21 septembre 2011 21:07:53
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Retrieve of data from two columns into one column

    For eg: i have a data in a table with columns A & B of same size
    A B
    1 2
    2
    3 1
    4 2
    5 3
    6 5
    7 1
    8 4
    9
    10 8
    Through a select i want the output of my data in one single
    columns, Well I can do this by using union.
    But my output should be like
    if I select by condition where A=2
    my output should be
    2
    1
    3
    7
    4
    because all these numbers are linked with 2 how do i do this
    because it is like searching the number 2 in two columns and wherever this number 2 is linked i should get all the data relevant to it.
    Hope u got my point what i exactly want
    Can anyone help me it is quite urgent.
    Regards
    Vamsi Mohan

    i do not a concatenated data
    i have a data in a table with columns A & B of same size
    A B
    1 2
    2
    3 1
    4 2
    5 3
    6 5
    7 1
    8 4
    9
    10 8
    if my where condition is 'where A=2'
    my output should be
    1
    2
    3
    4
    5
    6
    8
    10
    i want my query to search as loop so that it keeps on searching
    for related data as in my case it is
    2 is linked to 1
    1 is linked to 3
    3 is linked to 4
    my query should keep on seaching for linked numbers till
    it does not find any mathing linked numbers
    and the resulted output should come in one single column

  • Formula Columns in Data Template

    Hi,
    Is it posiible to have formula columns in data template apart from summary columns.please suggest.
    Regards

    You can put those formula-logic in sql query.
    summation/avg functions can be used directly in element.

  • Data merge from two columns

    Hello all,
    We have a requirement that we need to combine data from two columns. We have comments1 field in TABLE A and comments2 and comments3 fields in a TABLE B. The the report has a condition:
    Begin
    If status = 'Pre-Award' then
    Print comments1 from TABLE A;
    ELSIF
    status = 'Post-Award' then
    Print comments2 and comments3 from TABLE B;
    END IF
    END
    Tools version: Oracle reports version 6i.
    Thanks in advance.
    Arun.

    There's a couple of ways to do this.
    One way would be to create a placeholder column for your comments.
    The create a function (much like what you have already listed) to determine which comments to use and place the value of that comment into your placeholder column. You can then use it in that group just as you would any other field.
    Chad

  • Combine two columns data in single field STRAS

    Hi experts,
    I have to upload vendor master using direct method LSMW,
    I have been given an excel file having number of fields along with data and  House number and Street the data is in two different columns, but in master table there is only one field called STRAS which is combined for House number and street.
    How do i combine data of this two columns in single field STRAS
    Regards,
    Vijaya B.

    field-symbols: <fs> type line of itab_excel.
    loop at itab_excel assigning <fs>.
       concatenate <fs>-house <fs>-street into <fs>-newfield.
    endloop.
    by the end of the loop new filed will hold value needed for STRAS

  • Getting data of two columns in one column

    Hi,
    I need to show data of two columns in one column, I also want to insert space between the data of both the columns in the output
    can i use something like this ?
    (IMPORTER_NAME+' '+IMPORTER_ADDRESS) as "Location"

    872435 wrote:
    Hi,
    I need to show data of two columns in one column, I also want to insert space between the data of both the columns in the output
    can i use something like this ?
    (IMPORTER_NAME+' '+IMPORTER_ADDRESS) as "Location"You can either use the CONCAT function or || -
    SQL> select 'Hello'||' '||'World', CONCAT(CONCAT('Hello',' '),'World') from dual;
    'HELLO'||'' CONCAT(CONC
    Hello World Hello WorldHTH
    David

  • Show Rows Where Two Columns have Same Data

    Hello,
    I have a spreadsheet that I need to sort by showing me all the rows where the data is equal between two columns.
    I.E. I have a column called Last Name and I have another column, U, with some of those Last Names, I want to sort the spreadsheet to show me only the rows that match up with the same Last Name in coumn a and U.
    Thanks for any help.
    L

    To sort the table:
    Add two columns to the table. For this discussion, I'll refer to them as columns AA and AB.
    In AA2, enter: =ROW()
    Fill to the bottom of the table. With all f these cells selected, Copy, then Edit > Paste Values.
    This gives you a column you can sort by to restore the original order of the table.
    In AB2, enter: =IF(A=U,U," ") using option-space between the double quotes.
    Visually, this will repeat the duplicated names once more in column AB.
    An ascending sort on column AB will bring all rows with duplicate data in columns A and U to the top of the table.
    For greater visibility You might also add a conditional format rule to all of column AB, as I've done here for column D:
    The box to the right of "Text doesn't contain" contains a single 'option-space' character. The ascending sort (on column D) has not yet been done.
    Regards,
    Barry

  • Webi Report Data compare between two columns

    There is two different queries in Webi Report BI 4.1
    Query 1 - Name_1 == 100 records
    Query 2 - Name_2 == 75 records
    On the report need to compare the data between Name_1 and Name_2.
    Need report level flag as a second column
    name_1 = name_2 = Y
    name_1 <> name_2 = N
    One the report there is only two columns Name_1 Flag(Y/N)
    1. If statement is not working at all in this scenario
    2. Merge dimension is not useful since I need to treat these columns separately on the report.

    Hi Suri,
    As the objects belong to two different queries, the comparison might not work as they are not merged and incompatible.
    You can try creating a seperate query and can use subquery in it.
    For example:
    SELECT NAME_1 FROM QUERY_1
    WHERE
    NAME_1 NOT IN (SELECT NAME_1 FROM QUERY_2)
    This will display the names which are not common.
    Hope it will help.
    Regards,
    Yuvraj

Maybe you are looking for

  • SAP Infoset Query Reporting Set Restriction by Org. Structure

    Dear Experts, I am giving some new users a demo on using Infoset Query on an IDES server. I am using the user group Personnel Administration (PA) and the HRDATA infoset. As per my understanding, I should be able to restrict the reporting set accordin

  • Album and artist showing in itunes, but not in manual sync

    I have a 8 gig ipod touch and my library is larger so I have to select to manually add artists on my ipod. The problem is the artist I want isn't appearing in the artist section in sync. the artist is in itunes library but will not appear and doesn't

  • Evga 8800gt issue with my P6N SLI

    I recently purchased a bunch of new parts to build my new computer. MSI P6N SLI 6750 core 2 duo EVGA 8800GT OC G.skill 4GB (2 x 2gb sticks) 430W PSU *yes with enough amps for the card.. 3 12v rails totals 30+amps The problem im having is the card isn

  • Printing in grayscale

    How does one make printing in GRAYSCALE the default setting. It's a pain having to do change to this setting every time I want to print something.

  • Openbox + tint2, prevent a program from displaying in tint2 taskbar

    The title says it all.  Every time I start openbox, liferea runs (which is what I want) but it also shows up in the taskbar (which I dont want).  My beautiful, clean, empty default desktop is cluttered up by a taskbar item!  I want it gone.  Is there