Mathematical functions with input/output error

Please refer to the attached picture. Where do you find these mathematical functions with input/output error? I saw these in response to a message.

I think they appear when you connect a waveform or dynamic data type.  Since I rarely use these data types (just give the table!), I'm not positive.

Lynn

Tags: NI Software

Similar Questions

  • Ghetto VCB / Input/output error (327689)

    Hi all!

    I set up the ghetto of VCB backup script to our ESXi 3.5 servers.

    The way backup target is a Starwind iSCSI connected as a data store. With the data browser I can create and delete its file without problem.

    but when I try to run the script he replys error:

    Impossible to clone the drive: input/output error (327689)

    I have no idea what this could be. A google search gave me an indication which is something with vkmfs tools.

    But the really Wired is the first 5 time of the backup, run smothly thrue...

    Does anyone have a hint for me how to solve this problem?

    Regars @all

    • Alex

    Please take a look at this VMware KB: http://kb.vmware.com/kb/2116375 for the reply

    =========================================================================

    William Lam

    VMware vExpert 2009

    Scripts for VMware ESX/ESXi and resources at: http://engineering.ucsb.edu/~duonglt/vmware/

    repository scripts vGhetto

    VMware Code Central - Scripts/code samples for developers and administrators

    http://Twitter.com/lamw

    If you find this information useful, please give points to "correct" or "useful".

  • RMAN > backup of level 0 > ORA-27072: file IO error... Input/output error

    Hi, all.

    I get the following error messages when executing a level 0 backup. Please help!

    ====================================================================================================
    RMAN-03009: failure of the backup command on the channel of d1 at 2008-11-17 01:08:34
    ORA-19502: write error on file ' / NEW_backups/backups/admin/CCPROD/bkups/CCPROD.5313.1.670986008.DB ', blockno 82945 (blocksize = 8192)
    ORA-27072: IO file error
    Linux-x86_64 error: 5: input/output error
    RMAN-03009: failure of the backup command on the channel of d2 at 2008-11-17 01:08:34
    ORA-19502: write error on file ' / NEW_backups/backups/admin/CCPROD/bkups/CCPROD.5314.1.670986008.DB ', blockno 84609 (blocksize = 8192)
    ORA-27072: IO file error
    Linux-x86_64 error: 5: input/output error
    Additional information: 4
    Additional information: 84609
    Additional information:-1
    D2 disabled channel, job failed on it will run on another channel
    output channel: d1
    output channel: d2
    output channel: d3
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03009: failure of the backup command on the channel of d3 to 2008-11-17 01:08:34
    ORA-19502: write error on file ' / NEW_backups/backups/admin/CCPROD/bkups/CCPROD.5315.1.670986008.DB ', blockno 98433 (blocksize = 8192)
    ORA-27072: IO file error
    Linux-x86_64 error: 5: input/output error
    Additional information: 4
    Additional information: 98433
    Additional information:-1

    Since this is a clerical error, I look at the permissions on the target directory and available disk space on the target file system.

  • Procedure with input output and num_array sys_refcursor

    Hello

    I have to write a procedure with input of type of parameter num_array which will forward a list of IDs to the procedure and the output is sys_refcursor that will pass the id with the other columns in the table to the list of identifiers.

    operating system is the table with the id, os_name column with more than a few columns.

    create table os

    (identification number,

    OS_name varchar2 (30),

    .. .few more columns);

    I spend the os_name with id through the sys_refcursor.

    So I created the following procedure.

    num_array is a type of data defined by the user that is created as follows:

    create or replace type num_array in the table to the number;

    /

    create or replace procedure get_os_lang_dtls (num_array, id_os sys_refcursor id_num)

    is

    Start

    / * oses is the main table with id, os_name with other columns

    / * oses_gtt is the temporary table with id number data type varchar2 os_name * /.

    for indx in 1.id_num.count

    loop

    insert into os_gtt

    SELECT id, os_name

    of the operating system

    where id = id_num (indx);

    end loop;

    commit;

    Open the id_os for

    Select * from os_gtt;

    end;

    /


    I created a global temporary table with the column id and os_name.

    Insert in this table by using the id of i / p and setting os_name recovery operating system for this id in the loop.


    Then I open the exit sys_refcursor.


    Could someone please suggest me a better way to write the same logic?


    Thanks in advance

    No need of the TWG or anything too flashy here.

    Since you have a SQL type, you should be able to get away with...

    open out_ref_cursor for
    select 
    from os, table(cast(id_num as num_array)) nu
    where os.id = nu.column_value;
    

    A couple of notes apart from that. ID is not a great name for a column, why not OS_ID to be online with your OS_NAME? Second, always try to avoid use of the TWG, they are handy once in awhile, but not required nearly as often as find you them.

    A "rebate" in the casting of tables like that and their use in SQL is the cost based optimizer usually (depending on version) has no idea of how to do to optimize the query (it has no statistics on the table as it does on a table). In General, if you know that you have X items in this table, it is better to say Oracle. You can use the CARDINALITY indicator to tell Oracle about the number of lines, you expect your table to have on average. The default proposal is going to be your block size, so assuming that 8 k (standard) the estimate is going to be like 8000 items... probably not close to reality.

    See you soon,.

  • A stored procedure with input & output parameter as XML

    Hello

    I have a requirement in which I need to have a stored procedure accepts with huge XML from Java and MS a process all the records in the XML file and return the output with a few messages inside XML.

    CurrentY, I have a stored procedure to process the xml code stored in the Oracle database.

    I am using the following SQL statement to read data from the XML column.
    select xmltest1.id,xmltest1.name 
      from xmltest,
           XMLTABLE(
              XMLNamespaces(default 'syncpsna/schemas'),
              '/XMLTestRequest/insert/row'
                    PASSING xmltest.data_xml
                    COLUMNS
                    "ID" number(10) PATH 'id',
                    "NAME" varchar2(50) PATH 'name') xmltest1
    where xmltest.id = 2;
    I want to run similar queries to retrieve data from the XML passed as parameter of entry of JAVA.

    If I could get some examples to read the XML and return the xml to the calling program.

    Concerning

    I can run the query to extract the different sections in the xml file when the XML is stored in a table column. How can do the same thing on XML passed as an input parameter.

    Pretty much the same path, using the clause of PASSAGE.
    Assuming that the input XML is passed as parameter 'p_inputXML', you can do:

    SELECT x.id
         , x.name
    FROM XMLTable(
           XMLNamespaces(default 'syncpsna/schemas'),
           '/XMLTestRequest/insert/row'
           PASSING p_inputXML
           COLUMNS
             "ID"   number(10)   PATH 'id',
             "NAME" varchar2(50) PATH 'name'
         ) x
    ;
    
  • input/output error 0x8007045D

    Hi, I need help. Just live error in device IO 0x8007045D so they tried to create a new ERD for my hp desktop computer. The backup disk created very well. Any ideas?

    Hello:

    Here's what Microsoft says about the error and the steps to troubleshoot it.

    http://support.Microsoft.com/kb/952272

    Paul

  • Error input/output of the VMFS5 local data store

    Hello

    I have 3 locally on the hard drive on my server from IBM. 1 250 GB drive, I used to create the data store Linux (datastore1) and other 2 disks that I created the Windows data store (datastore2)

    Couple of VMS is deployed on the two databases. Over the weekend, suddenly vms Windows Data Store (datastore2) went down. When I checked Monday concluded that data store is visible to ESXi host but I am unable to navigate to virtual machines.

    If I Directory VM cd I get below error:

    ~ # cd/vmfs/volumes/Windows\ Data\ store/Win - 2 k 8-2.

    SH: getcwd: input/output error

    # (unknown)

    ~ # esxcfg - scsidevs - l

    MPX.vmhba32:C0:t0:l0

    Device type: Direct access

    Size: MB 1911

    Full name: USB Direct-access Local (mpx.vmhba32:C0:T0:L0)

    Multichannel plugin: NMP

    Device console: /vmfs/devices/disks/mpx.vmhba32:C0:T0:L0

    Devfs Path: /vmfs/devices/disks/mpx.vmhba32:C0:T0:L0

    Seller: SMART model: USB - IBM Revis: 0000

    : SCSI 2 is Pseudo: false status: on

    : RDM Capable false is removable: true

    Is Local: true is SSD: false

    Other names:

    VML.0000000000766d68626133323a303a30

    VAAI status: unsupported

    MPX.vmhba33:C0:t0:l0

    Device type: CD-ROM

    Size: 0 MB

    Full name: Local USB CD-ROM (mpx.vmhba33:C0:T0:L0)

    Multichannel plugin: NMP

    Device console: /vmfs/devices/cdrom/mpx.vmhba33:C0:T0:L0

    Devfs Path: /vmfs/devices/cdrom/mpx.vmhba33:C0:T0:L0

    Seller: KVM model: vmDisk-CD live again: 0.01

    : SCSI 2 is Pseudo: false status: on

    : RDM Capable false is removable: true

    Is Local: true is SSD: false

    Other names:

    VML.0005000000766d68626133333a303a30

    VAAI status: unsupported

    NAA.5000c500478aee93

    Device type: Direct access

    Size: 286102 MB

    Full name: IBM-ESXS Serial Attached SCSI disk (naa.5000c500478aee93)

    Multichannel plugin: NMP

    Device console: /vmfs/devices/disks/naa.5000c500478aee93

    Devfs Path: /vmfs/devices/disks/naa.5000c500478aee93

    Seller: IBM-ESXS model: ST9300605SS Revis: B556

    SCSI level: 6 is Pseudo: false status: gradient

    RDM Capable is: true is removable: false

    Is Local: the SSD of is wrong: false

    Other names:

    VML.02000000005000c500478aee93535439333030

    VAAI status: unknown

    NAA.5000c500478b8d3b

    Device type: Direct access

    Size: 286102 MB

    Full name: IBM-ESXS Serial Attached SCSI disk (naa.5000c500478b8d3b)

    Multichannel plugin: NMP

    Device console: /vmfs/devices/disks/naa.5000c500478b8d3b

    Devfs Path: /vmfs/devices/disks/naa.5000c500478b8d3b

    Seller: IBM-ESXS model: ST9300605SS Revis: B556

    SCSI level: 6 is Pseudo: false status: gradient

    RDM Capable is: true is removable: false

    Is Local: the SSD of is wrong: false

    Other names:

    VML.02000000005000c500478b8d3b535439333030

    VAAI status: unknown

    NAA.5000c500478d724f

    Device type: Direct access

    Size: 286102 MB

    Full name: IBM-ESXS Serial Attached SCSI disk (naa.5000c500478d724f)

    Multichannel plugin: NMP

    Device console: /vmfs/devices/disks/naa.5000c500478d724f

    Devfs Path: /vmfs/devices/disks/naa.5000c500478d724f

    Seller: IBM-ESXS model: ST9300605SS Revis: B556

    SCSI level: 6 is Pseudo: false status: gradient

    RDM Capable is: true is removable: false

    Is Local: the SSD of is wrong: false

    Other names:

    VML.02000000005000c500478d724f535439333030

    VAAI status: unknown

    ~ # esxcfg - scsidevs - m

    NAA.5000c500478d724f:1 /vmfs/devices/disks/naa.5000c500478d724f:1 4f83af28-52abeaf2-6475-5cf3fcba46f2 0 Linux Data Store

    NAA.5000c500478b8d3b:3 /vmfs/devices/disks/naa.5000c500478b8d3b:3 4f7cfc39-4d17993a-a08c-5cf3fcba46f2 0 Windows Data Store

    Data store of Windows NAA.5000c500478aee93:1 /vmfs/devices/disks/naa.5000c500478aee93:1 4f7cfc39-4d17993a-a08c-5cf3fcba46f2 1

    Here is the output of dmesg: I suspect to be a hard drive problem

    (2014 06-16 T 10: 46:25.385Z cpu5:382346) WARNING: UserObj: 675: could not crossdup fd 8, / dev/ptyp0 CHAR type: busy

    (2014 06-16 T 10: 46:25.385Z cpu5:382346) WARNING: UserObj: 675: could not crossdup fd 10, / dev/ptyp0 CHAR type: busy

    (2014 06-16 T 10: 46:25.385Z cpu2:382348) WARNING: UserLinux: 1340: unsupported: (void)

    (2014 06-16 T 10: 46:52.510Z cpu16:4112) NMP: nmp_ThrottleLogForDevice:2318: Cmd 0 x 28 (0x412440db9c40) to dev 'naa.5000c500478b8d3b' on the way 'vmhba2:C0:T0:L0' failed: H:0 x D:0 x 2 P:0 valid 0 x 0 sense-data: 0x4 0x32 0x0. Bill: NO

    (2014 06-16 T 10: 46:52.510Z cpu16:4112) ScsiDeviceIO: 2316: Cmd (0x412440db9c40) 0 x 28, CmdSN 0x2a to dev 'naa.5000c500478b8d3b' has no sense H:0 x D:0 x 2 P:0 valid 0 x 0-data: 0 x 4 0 32 x 0 x 0.

    (2014 06-16 T 10: 47:34.631Z cpu18:4114) NMP: nmp_ThrottleLogForDevice:2318: Cmd 0 x 28 (0 x 412441635000) to dev 'naa.5000c500478b8d3b' on the way 'vmhba2:C0:T0:L0' failed: H:0 x D:0 x 2 P:0 valid 0 x 0 sense-data: 0x4 0x32 0x0. Bill: NO

    (2014 06-16 T 10: 47:34.631Z cpu18:4114) ScsiDeviceIO: 2316: Cmd (0 x 412441635000) 0 x 28, CmdSN 0x1c to dev 'naa.5000c500478b8d3b' has no sense H:0 x D:0 x 2 P:0 valid 0 x 0-data: 0 x 4 0 32 x 0 x 0.

    (2014 06-16 T 10: 47:41.476Z cpu18:4114) ScsiDeviceIO: 2316: Cmd (0x412440da3500) 0 x 28, CmdSN 0 x 21-dev 'naa.5000c500478b8d3b' has no sense H:0 x D:0 x 2 P:0 valid 0 x 0-data: 0 x 4 0 32 x 0 x 0.

    Please guide me to solve this problem. Thank you all in advance

    /virtu4

    This problem is solved.

    Thanks to the communities for not responding, that made me to fix this myself

    /virt4

  • Producer consumer with inputs and outputs analog and digital

    Hello world

    I'm working on a program of control system for some practical test work. Currently, I am working on the data acquisition of the Labview program component. My architecture is consumer-product loops with a what. My system will have analog inputs, outputs, analog inputs and digital outputs. It is not a criticism of time sytem, but I wish that all the acquisition of data to synchronize. I enclose my program because it is at the moment. I have difficulties to get all the data in the since that I have two types of data. In addition, I don't know if I have synced the four sequences of read/write correctly. I would be very happy if someone could take a look at my program and give me some advice. Thanks in advance.


  • Error: No function with name to_date does exist in this scope

    Hai All

    insert into dail_att(empcode,barcode,intime,attend_date)

    (select r1.barcode, to_date (to_char (r1.bardate, 'ddmmyyyy'): min (r1.bartime), 'ddmmyyyy hh24mi'),)
    R1.bardate of the r1.barcode temp_attendance group, r1.bardat);

    It is my statement to insert

    Here I insert data Dail_att the table Temp_attendance and here R1 is the folder that I stated.

    It works very well. More I need to add a column in the Insert EMPCODE IE and I need to

    take Empl_barcode.

    Table of Empl_barcode consist of fields

    Empcode tank

    Barcode varchar

    Etc.

    So I need to include empcode in this statement when I use this in my insert statement


    insert into dail_att(empcode,barcode,intime,attend_date)
    (selecte.emplcode, r1.barcode, to_date (to_char (r1.bardate, 'ddmmyyyy'): min (r1.bartime), 'ddmmyyyy hh24mi'),)

    Temp_attendance R1.bardate, e empl_barcode, where e.barcode = r1.barcode group by

    R1. Barcode, R1.bardate, e.emplcode);


    I got an error

    No function with name to_date does exist in the scope



    Any help is highly appericatable


    Thanks and greetings

    Srikkanth.M

    Published by: Srikkanth.M on April 24, 2010 09:26

    Dear Srikkanth,
    First of all, in the table / column you provided and that the corresponding query names there are a large number of spelling errors or incompatibilities. It is very important that you make sure that your question is consistent.

    We have 'trying to figure out' if Bar_code is anme name or a table column, whence the emplcode column etc.
    Take the time to write the question and format, please.
    Frame queries and code in a pair of tags {code} without spaces.

    That said...

    update dail_att set empcode=(select emplcode
    from empl_barcode ,dail_att where bar_Code= barcode);
    
    And i have an error
    
    ORA-01427: single-row subquery returns more than one row 
    

    Let us think about this...
    The subquery in your update statement (which is the main request) is

    (select emplcode
    from empl_barcode ,dail_att where bar_Code= barcode)
    

    In this query, you want to join empl_barcode table and dail_att on * bar_code = barcode) condition.

    Why must you table dial_att in the subquery? You do not have.
    Remove dail_att the subquery table.

    VR
    Sudhakar B.

  • How to upgrade output during input/output synchronized?

    Hello

    We use an input/output series card m PCI-6289 to provide participants sound while recording the EEG.

    Our inputs and outputs are synchronized using the diagram that is attached.

    To date our output audio segments have been relatively short. However, now we want to output sounds which last a long time. I've run into shortages of memory by using the current diagram.

    Could someone suggest how I could update the audio output, regularly with pieces short 1 sec, in the loop in the diagram attached?

    I tried to move the DAQmx Write.vi (point 4 on the diagram) inside the loop, but the output signal was not correct.

    Thank you very much for your advice!

    Frenk

    Hi Frenk,

    Can you be more specific about the error that you are experiencing?

    Have you heard of the regeneration of analog output? It can be used with a property DAQmx writing node.

    Regeneration is the repetition of the data already in the buffer. Standard regeneration is when the PC buffer data are continually downloaded on the FIFO to write. If the data buffer is smaller than the size of the FIFO, it is copied as many times as possible in the FIFO before the start of the generation. This is done to reduce the risk of errors of bandwidth by transferring is not the new data down to the FIFO fairly quickly. Once started, the generation of the copies of the data are no longer manufactured to fill the buffer. New data can be written in the buffer of PC at any time without interrupting the output.

    You can also use the FIFO regeneration. With regeneration of the FIFO, the entire buffer is downloaded on the FIFO and regenerated from there. Once the data is uploaded, new data cannot be written to the FIFO. To use the FIFO regeneration, the whole buffer must fit within the size of the FIFO. The advantage of using the FIFO regeneration is that it requires no communication with memory primary host after the operation started, thus avoiding any problems that arise due to the excessive movement of buses.

    Take a look at this link which travels with the regeneration: http://www.ni.com/product-documentation/3874/en/

  • How to start the view off of the ref cursor Oracle as input/output param

    Hello world

    We use JDev 11.1.2.3 WL 10.3.6 and Java 7.

    We are at the beginning of our transition from Oracle Forms to ADF.  We have a very large forms that uses many store procedures that have IN/OUT ref Cursor parameters and tables plsql.  I tried to find information on best practices to achieve, but only seemed to find tutorials on SEO of the Oracle ref Cursor return functions.  I hope we don't have to rewrite our code of database to work with ADF.

    This is an example of a proc currently a block on a form based on directly

    The ref cursor parameter is input/output to satisfy the way the form handles this type of paradigm.

    ADF we want I hope to reuse these procs existing (without the need to wrap/overload them) on the basis of the display objects.

    Example:

    / * my record type which houses the information I want to go back * /.

    TYPE rec_hist_vacpac_status IS RECORD)

    rec_order NUMBER (5),

    rec_rownum NUMBER (5),

    return_column SAM_VACPAC.vacpac_status%TYPE,

    rec_login_id SAM_VACPAC.ins_user%TYPE,

    status_date SAM_VACPAC.status_date%TYPE

    );

    / * Sets the ref cursor type * /.

    TYPE lcur_hist_vacpac_status IS REF CURSOR;

    / * This is a procedure that would take some info link go / return

    Return the ref cursor of this information as an in / out * /.

    PROCEDURE prc_myinfo_refcur)

    pnum_identify_seq_id in NUMBERS

    pcur_myinfo IN OUT lcur_hist_vacpac_status);

    Can anyone point me in the right direction on documentation on this?

    Thank you!

    Hi Cemerson:

    See this example:

    1. 1. create a TYPE as an object

    CREATE OR REPLACE

    TYPE GOTYOB_EQUI

    AS AN OBJECT

    (

    CDELEM VARCHAR2 (50).

    TIELEM VARCHAR2 (2)

    );

    1. 2. create a TABLE TYPE AS

    CREATE OR REPLACE

    TYPE GOTYTA_EQUI

    AS THE GOTYOB_EQUI TABLE;

    1. 3 create a function, it returns the TYPE of the TABLE

    FUNCTION fn_equiposarriba)

    pa_cdelem IN VARCHAR2,

    pa_nucomp in NUMBERS

    pa_anperi in NUMBERS

    pa_meperi in NUMBERS

    )

    Gotyta_equi RETURN PIPELINED IS

    CURSOR trae_equimani (va_cdelem VARCHAR2) IS

    SELECT cdelem, tielem, cdelempadr,

    (SELECT cdequi

    Of evm_alim

    WHERE anperi = eq.anperi

    AND meperi = eq.meperi

    AND nucomp = eq.nucomp

    AND cdalim = eq.cdalim) cdalim

    Of evm_equimani eq

    WHERE anperi = pa_anperi

    AND meperi = pa_meperi

    AND nucomp = pa_nucomp

    AND cdelem = va_cdelem

    AND cdelempadr <> cdelem

    AND tielem <> 'A ';

    equimani trae_equimani % ROWTYPE;

    va_cdalim VARCHAR2 (100);

    BEGIN

    -Loading los equipos aguas arriba

    WHILE equimani.cdelempadr IS NOT NULL LOOP

    OPEN trae_equimani (equimani.cdelempadr);

    equimani: = NULL;

    SEEK trae_equimani INTO equimani;

    CLOSE Trae_equimani;

    IF equimani.cdelem IS NOT NULL THEN

    PIPE ROW (gotyob_equi (equimani.cdelem, equimani.tielem));

    END IF;

    END LOOP;

    RETURN;

    END;

    1. 4 SQL Query with the help of the function... you can use this SQL in a display object

    SELECT

    *

    Of

    TABLE (gopq_eventos.fn_equiposarriba (' F-SCZ-043-103', '))

    1,

    2013,

    6

    )

    )

    Best regards, Marcelo

  • perform an immediate function with parameter out

    How to perform a function with parameter in the statement immediately execute?
    declare
       vRunFunctie   varchar2(100) := 'startfunction';
       vParmIn1      varchar2(100) := 'AAA';
       vParmIn2      varchar2(100) := 'HHH';
       vParmOut1     number;
       vParmOut2     varchar2(100);
    begin
       --
       execute immediate 'select '||vRunFunctie||'('''||vParmIn1||''','''||vParmIn2||''',:vParmOut2) from dual' into vParmOut1 using vParmOut2;
       --
       dbms_output.put_line('vParmOut1['||vParmOut1||']');
       dbms_output.put_line('vParmOut2['||vParmOut2||']');
    end;
    /
    error: ORA-06572 startfunction function has arguments

    the statement looks like this in pl/sql:
    vParmOut1 := startfunction(vParmIn1, vParmIn2, vParmOut2);
    --vParmOut1 := startfunction('AAA', 'HHH', vParmOut2);
    Thank you.
    L.

    Update:
    You are not using bind variables with your dynamic code. That is a major mistake and the #1 reason for poor database performance.
    It is a fundamental flaw in programming to design a function that includes output parameters. This is simply and plainly wrong.
    Output parameters are also not supported by the SQL language - it does not support "procedure" like code units and call methods. 
    I know that the function should not have out parameters. But its programmed that way already...

    You try something like

    declare
       vRunFunctie   varchar2(100) := 'startfunction';
       vParmIn1      varchar2(100) := 'AAA';
       vParmIn2      varchar2(100) := 'HHH';
       vParmOut1     number;
       vParmOut2     varchar2(100);
    begin
       --
       execute immediate 'begin :x := ' || vRunFunctie || '( :p1,  :p2, :vParmOut2 ); end;' using out vParmOut1, vParmIn1, vParmIn2, out vParmOut2;
       --
       dbms_output.put_line('vParmOut1['||vParmOut1||']');
       dbms_output.put_line('vParmOut2['||vParmOut2||']');
    end;
    / 
    
  • Mathematical function FRS

    I use the mathematical function in FRS 'PercentOfTotal([A,40],[A,39]) '. I chose to use a custom formula. But when I try to save him. He does not receive SACE and when I run web preview so I am getting error in each cell of this row.

    can someone help me with this. I don't know how these mathematical function work in FRS.

    Actally I want to perform ([A, 40] / [A, 39]) * 100

    Thank you

    When you select a cell/row/column formula, you should see the formula bar activate (go from gray to white) it looks like in the formula bar in Excel. There just above the POV. Either by the way, I want to talk about studio HFR, not the HTML client in the workspace. You should see (from left to right) a drop down menu where you can select different functions, then a help "?" then a red X, then a green check mark. After typing in your formula, click the green check mark to validate and "lock" function. Save your report and try to run it.

  • Focusrite scarlett 2i4 unable to use as audio input/output device

    I just bought a Scarlett 2i4 hoping that time would have been solved compatibility problems. However, I'm unable to use it as an input/output device. Site Web Focus rite has a class compatible mode download that is supposed to solve this problem. And I installed it three times without success. Has anyone else had this problem and found a workaround. Thank you! I have a macbook pro mid 2012, el capitan 10.11.3.

    Don't know if this will help.

    I have a 2i2. When I got it, a few BONES in there, I couldn't make it work. I went back and forth with tech support Scarlett. They really tried, even sent several beta drivers. Nothing works.

    Then I uninstalled all the software of Scarlett and restarted - and it works.

  • Lack of analog input/output range

    Hello!

    I LV 8.6 installed on my PC with XP OS and my card is 6024E. I noticed that the analog input/output palette is not appearing or missing. I tried searching but no luck. NOR-Daq traditional 7.4.4 currently installed.

    Try reinstalling the device driver CD/DVD and make sure you have selected traditional DAQ.

    Say you you installed NOR-DAQ 7.4.4.  But if it was made before you install LabVIEW, LabVIEW and then see.

Maybe you are looking for