How to Plot number and string in one row (data logger counter via MODBUS) ?

hi all i made data log quantity using Digital Counter via modbus (RS-485) to monitoring quantity and reject that has and Name Operator, Machine and Part Number.
i have problem about plot the number & string in one row, as shown on the picture below :
how to move that string on one row ? i attach my vi.
Thanks~
Solved!
Go to Solution.
Attachments:
MODBUS LIB Counter.vi ‏39 KB

Hi rhiesnand,
right now you add 2 new rows to your array.
The solution is to concatenate both row parts to one bigger 1D array before adding that array as new row to your 2D array!
Like this:
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome

Similar Messages

  • How to Plot number and string in one row (data logger counter) ?

    hi all i made data log quantity using Digital Counter via modbus to monitoring quantity and reject that has and Name Operator, Machine and Part Number.
    i have problem about plot the number & string in one row, as shown on the picture below :
    how to move that string on one row ? i attach my vi.
    Thanks~
    Attachments:
    MODBUS LIB Counter.vi ‏39 KB

    Duplicate and answered - http://forums.ni.com/t5/LabVIEW/How-to-Plot-number-and-string-in-one-row-data-logger-counter-via/m-p...

  • How to show English and Arabic in one JTextPane

    Hi,
    Does anyone know how to display English and Arabic in one JTextPane? For English the orientation is left to right while it's right to left for Arabic. So the result might be like:
    hello                    
                سالتك ليتم الرد 
    bye                                             Thanks!
    Alex
    Edited by: alex_46 on Aug 31, 2009 7:54 AM
    Edited by: alex_46 on Aug 31, 2009 7:56 AM

    I think you should be able to do it like this (very psuedo):
    set the pane type to html,
    for your text, have a String with something like:
    <html>
    <div align="left">english</div>
    <div align="right">arabic</div>
    </html>I don't know the exact html for this but something like the above.
    Then set the whole string into your pane.
    patumaire

  • How do I copy and paste from one page or file to another page or file - on the same screen?

    How do I copy and paste from one page or file to another - on the same screen?

      Open both of your images in the Editor. Click on the image you want to copy and press Ctrtl+A (select all) followed by Ctrl+C (copy) then click the tab for your other image and press Ctrl+V (paste)
    Alternatively click on your background image then simply drag the second image from the photo/project bin and drop it into the main editor workspace on top of the background image. Use the move tool to position and the corner handles of the bounding box to scale.

  • How do I Register and view my one on one now that I bought the card?

    How do I Register and view my one on one now that I bought the card?
    I paid for this service recently, but when I go to the apple store web site, it just indicates my previous account has expired.

    Hello Helpmenowplease1,
    Congratulations on your new One to One membership!  It sounds like you need to register the new membership.  I found an link where you can activate your membership:
    Activate your One to One membership:
    https://onetoone.apple.com/activate
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How to plot waterfall graph in vb6 from offline data

    How to plot waterfall graph in vb6 from offline data?The data load from SQL Server Database.Thanks.

    asrol,
    If you look at the Plot Styles example in the folder I mentioned in the previous post there is a section of code there that you might want to refer to in order to recreate your data.
    '=============================================================================
    ' Plot Curve Button Handler
    '=============================================================================
    Private Sub PlotCurve_Click()
        ' Create curve data
        Dim x(40)
        Dim y(40)
        Dim z(40)
        For i = 0 To 40
            x(i) = Sin(i / 3#)
            y(i) = Cos(i / 3#)
            z(i) = i
        Next i
    In this example they create 3 arrays to represent the three dimensions of the array. For your case if you were to plug your data into two of the array (axes) that would give you the data for the channels, then you can simply input a constant for the third array it would produce a single line of your data as shown in your example GIF.  You can then repeat this process for each set of data, with a new constant value for that third axis, and it should manually create a graph that will look something like you desire.
    John B.
    Applications Engineer
    National Instruments

  • Select Single * and Select upto one row

    Hi all,
    Can anybody tell me what is difference between Select single * and select upto one row?
    And which one is better?
    Thanks in advance.......

    According to SAP Performance course the SELECT UP TO 1 ROWS is faster than SELECT SINGLE because you are not using all the primary key fields.
    select single is a construct designed to read database records with primary key. In the absence of the primary key, it might end up doing a sequential search, whereas the select up to 1 rows may assume that there is no primary key supplied and will try to find most suitable index.
    The best way to find out is through sql trace or runtime analysis.
    Use "select up to 1 rows" only if you are sure that all the records returned will have the same value for the field(s) you are interested in. If not, you will be reading only the first record which matches the criteria, but may be the second or the third record has the value you are looking for.
    The System test result showed that the variant Single * takes less time than Up to 1 rows as there is an additional level for COUNT STOP KEY for SELECT ENDSELECT UP TO 1 ROWS.
    The 'SELECT SINGLE' statement selects the first row in the database that it finds that fulfils the 'WHERE' clause If this results in multiple records then only the first one will be returned and therefore may not be unique.
    Mainly: to read data from
    The 'SELECT .... UP TO 1 ROWS' statement is subtly different. The database selects all of the relevant records that are defined by the WHERE clause, applies any aggregate, ordering or grouping functions to them and then returns the first record of the result set.
    Mainly: to check if entries exist.
    Select Single is the best one compared to UPto one rows.
    Select Single will get the first record from the table which satisfies the given condition.So it will interact once with the database.
    UTO 1 rows will get the list of the records for the given match and iwll show the first record from the list.So it will take time to get the record.
    SELECT SINGLE VBELN from VBAK
    where MATNR = '1M20'.
    ---Thjis will get the first matched record and will display the record
    SELECT VBELN from VBAK
    where MATNR = '1M20' upto 1 rows.
    ---Thjis will get the list of matched records and will display the first record
    The Major difference between Select Single and Select UPTO 1 rows is The Usage Of Buffer for each.
    Select Single will search for all the satisfied data and bring all that data into Buffer and later it will give to that data to the program.
    Select UPTO 1 Rows will end the search after getting the 1st satisfied record and gives that record to the program.
    Thus Select Single will take much processing time when compare with Select UPTO 1 rows.
    Also
    check these threads..
    Difference between Select Single and Selct upto 1 row
    Difference between Select Single and Select upto 1 row
    Difference between select single and select upto one row
    Difference between 'select single *' and 'select upto 1 rows'
    difference between select single and select up to 1 rows
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • Diff bw select single *  and select upto one row

    hai,
        what is the difference  between select single *  and select upto one row.

    hi,
    ex code
    Report Z_Difference
    Message-id 38
    Line-Size 80
    Line-Count 0
    No Standard Page Heading.
    Start-Of-Selection.
    Data: w_Single type Posnr,
    t_Rows type standard table of Posnr
    initial size 0
    with header line.
    Select single Posnr
    from zDifference
    into w_Single.
    Select Posnr
    into table t_Rows
    from zDifference
    up to 1 rows
    order by Posnr descending.
    Write :/ 'Select single:', w_Single.
    Skip 1.
    Write :/ 'Up to 1 rows :'.
    Loop at t_Rows.
    Write t_Rows.
    EndLoop.
    According to SAP Performance course the SELECT UP TO 1 ROWS is faster than SELECT SINGLE because you are not
    using all the primary key fields.
    select single is a construct designed to read database records with primary key. In the absence of the primary key,
    it might end up doing a sequential search, whereas the select up to 1 rows may assume that there is no primary key
    supplied and will try to find most suitable index.
    The best way to find out is through sql trace or runtime analysis.
    Use "select up to 1 rows" only if you are sure that all the records returned will have the same value for the field(s)
    you are interested in. If not, you will be reading only the first record which matches the criteria, but may be the
    second or the third record has the value you are looking for.
    The System test result showed that the variant Single * takes less time than Up to 1 rows as there is an additional
    level for COUNT STOP KEY for SELECT ENDSELECT UP TO 1 ROWS.
    The 'SELECT SINGLE' statement selects the first row in the database that it finds that fulfils the 'WHERE' clause
    If this results in multiple records then only the first one will be returned and therefore may not be unique.
    Mainly: to read data from
    The 'SELECT .... UP TO 1 ROWS' statement is subtly different. The database selects all of the relevant records that
    are defined by the WHERE clause, applies any aggregate, ordering or grouping functions to them and then returns
    the first record of the result set.
    Mainly: to check if entries exist.
    You can refer to the below link..
    http://www.sap-img.com/abap/difference-between-select-single-and-select-upto-one-rows.htm
    rgds
    anver
    if hlped pls mark points

  • How to convert number to string in java

    hi how can i convert number to string in java
    something like
    public void Discription(Number ownerName){
    String.valueOf(ownerName);Edited by: adf009 on 2013/04/08 7:14 PM

    Yet another way of doing it is: ownerName.toString().
    If you are working in and IDE such as Netbeans or Eclipse, type a period after the object name. Wait a second or so. Eclipse/Netbeans Intellisense will show you a list of functions that object provides that you can choose from. toString() is one of them.

  • How to pick number in string

    Hi, all
    Does have some function can pick number from string.
    For example: I have a string like this " **** ** 123 **** ** 45 *** ** 678 *** **", I want to extract the first number (123) from the string.
    is there any functions in labview to result ?
    Many thanks

    Use match pattern with [0-9]+ as regular expression. It is in the string palette.
    [0-9]+ matches "A sequence of one or more digits". Check the online help for more details.
    (see attached example (LabVIEW 7.0)).
    Message Edited by altenbach on 10-12-2005 09:11 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    MatchNumbers.vi ‏22 KB

  • How to Link Text and Image as One Button?

    I can easily convert an image or text to a button, but how do I link them both as one button so when you mouseover either one, they both turn a color and when you click on one, they both turn a color before jumping to the scene?

    Include the image and the Text in the Button's Layer Set. Design the Sub-picture Highlight to affect both.
    Just remember that a Button is defined by a rectangle, that encompasses all elements in the Button, and that Buttons (no part) may overlap any other Button.
    Good luck,
    Hunt

  • Vendor Evaluation: How to evaluate number of vendors in one go

    All SAP Gurus,
    How we can evaluate number of vendors in one go?
    Regards,

    Hi,
    Go to transaction ME6G & schedule the program RM06LBAT to run vendor evaluation for multiple vendors at one time.
    Else you can use SE38 transaction with program RM06LBAT

  • Changed my number and need old one off icloud

    How do I delete my old numer off my icloud? I chnged my phone number and when I text other people that have an iphone it still shows up as my old number

    Welcome to the Apple Community.
    You can change the address or number you use for messages at settings> messages> send & receive.

  • How to get system and boot on one volume - currently on 2 volumes

    I have ended up with 2 hard drives one of which has Windows 7 on one partition and the other one has 2 volumes each with Windows 8.1 installed.  This 8.1 drive has one volume (D) marked as Active, Boot and the other volume (C) marked as System.  
    I want to make the C volume Active System and Boot and have the D volume for storage only.    I need to make this change without losing data on either volume.   Can this be done, if so which of the many partition operations is the appropriate
    one.  Would a free download such as EasUS be able to do it?

    I have ended up with 2 hard drives one of which has Windows 7 on one partition and the other one has 2 volumes each with Windows 8.1 installed.  This 8.1 drive has one volume (D) marked as Active, Boot and the other volume (C) marked as System.
      I want to make the C volume Active System and Boot and have the D volume for storage only.    I need to make this change without losing data on either volume.   Can this be done, if so which of the many partition operations is the appropriate
    one.  Would a free download such as EasUS be able to do it?
    Sorry error in original description - Volume C is Boot and volume D is Active System.

  • How can i copy and paste from one spreadsheet to another?

    Trying to shuffle around the rows as part of an everchanging schedule.  When i copy and paste from one spreadsheet to the other, the images overlay each other as if i were litterally cutting them out of paper and then sloppily pasting to another. Is there a way to set them up so crosscutting is more seamless in appearance?

    jrc1971 wrote:
    ...When i copy and paste from one spreadsheet to the other, the images overlay each other as if i were litterally cutting them out of paper and then sloppily pasting to another.
    JRC,
    The reason you get that result is that you are pasting the rows to the canvas of your second document instead of into an existing table.
    Instead, make a large blank table in your receiving document and paste into that table only after clicking on the cell where you want the first cell of the copied data to be positioned.
    Jerry

Maybe you are looking for

  • The operation cannot complete because there isn't enough memory (RAM) available? Anyone had this issue?

    I was working on a file, closed it briefly, then reopened it but didn't open and continued to get the message that I don't have enough memory. The file is not huge at all. 41.3 MB Anyone had this issue before? Need help soon. Need to send this file t

  • Front Panel Objects control

    How can I passingly Disabled all controls of same type on front panel together using a unique Property node? I try to use the Class Specifier Constant but it doesn't work. Thanks,  Fabio

  • Data Joins and Pivot Help

    Hi, I have one fact table and one huge history table that goes really deep with scores stored with month end dates. I am looking for a way to manipulate the month and year of DateChanged in table A along with joins on the acct no to retrieve scores f

  • Problems with updated certificate

    I have finally managed to get a certificate update with the same details as the last one, but now when I sign the application and try and install I get an error saying the application with that name already exists in the destination. What am I doing

  • Precision T1700 ME FW UPDATE FAILED . Internal Error : 0x00002243 at BIOS update

    Hi all! We have 5 of DELL Precision T1700 Workstation, and I upgraded the BIOS version to A15 from A10 with the T1700A15.exe from USB drive. Under the upgrade I've seen the next message: ME FW UPDATE FAILED . Internal Error : 0x00002243 The machine's