How do i output multiple arrays from a case structure to create one larger array

I currently have a vi that has one hardware input that i needed to take a measurement then be moved and take a similar measurement at a different point.  To accomplish this i used a while loop inside a case structure.  The while loop takes the measurement  and finds the numbers i need while the case structure is changed per the new measurement location.  I want to take the data points i have created in each case and output them into a single table.  I assumed to do this the best way would be to get the data from each case into its own built array and build a larger array but I cant get the information out of the case structure so that it all inputs at different places.
thanks for your help
Attachments:
Array.vi ‏30 KB

Hi Ross,
attached you will find a solution for your table building problem.
I would suggest thinking about program design - having the same case content in several cases doesn't make sense. I also would not want my user to press several stop buttons depending on choosen measurement...
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome
Attachments:
Array.vi ‏45 KB

Similar Messages

  • How do I delete multiple photos from the Camera Roll?

    How do I delete multiple photos from camera roll without doing it one at a time?

    Thanks for your posts on this - it's something I've been wondering about, too.
    I do agree with Bonzo that it seems strange that there isn't a way to do it *efficiently* without having to hook the iPad to a computer.
    I know there is an alternative: in other words, you're right, Lawrence - it is possible to delete multiple files at once by following your instructions (i.e. tapping on each photo once, etc.) - but if you want to delete lots of photos, it takes ages to tap on every one of them.
    Does anyone else out there know of a way to delete multiple photos on the iPad/iPhone/iPod touch without having to tap on each photo separately, or having to hook up to a computer?
    I'd be really grateful for any help on this. Thanks!

  • How can i send multiple sms from my iphone 4

    how can i send multiple sms from my i phone 4

    Turn Group Messaging (instructions in lin that follows) off and send the message to multiple recipients. The result may be dependent on your carrier. If manually keying in numbers rather than using contacts, use the return key after each number. http://support.apple.com/kb/HT5760

  • How do I receive multiple texts from the same sender, each individually?

    How do I receive multiple texts from the same sender, each individually?

    So I receive automated reminders from my job & I want them to come individually. For example, one text -- time stamped 10:14 pm, then another 11:12 am, coming as separate msgs.

  • How do I add multiple pages from my scanner to the adobe app?

    How do I add multiple pages from my scanner to the adobe app?

    You can't do this in Reader. It must be done in Acrobat on Windows or Macintosh.

  • How do I insert multiple rows from a single form ...

    How do I insert multiple rows from a single form?
    This form is organised by a table. (just as in an excel format)
    I have 20 items on a form each row item has five field
    +++++++++++ FORM AREA+++++++++++++++++++++++++++++++++++++++++++++++++++++
    +Product| qty In | Qty Out | Balance | Date +
    +------------------------------------------------------------------------+
    +Item1 | textbox1 | textbox2 | textbox3 | date +
    + |value = $qty_in1|value= &qty_out1|value=$balance1|value=$date1 +
    +------------------------------------------------------------------------+
    +Item 2 | textbox1 | textbox2 | textbox4 | date +
    + |value = $qty_in2|value= $qty_out1|value=$balance2|value=$date2 +
    +------------------------------------------------------------------------+
    + Item3 | textbox1 | textbox2 | textbox3 | date +
    +------------------------------------------------------------------------+
    + contd | | | +
    +------------------------------------------------------------------------+
    + item20| | | | +
    +------------------------------------------------------------------------+
    + + + SUBMIT + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Database Structure
    +++++++++++++++++
    + Stock_tabe +
    +---------------+
    + refid +
    +---------------+
    + item +
    +---------------+
    + Qty In +
    +---------------+
    + Qty Out +
    +---------------+
    + Balance +
    +---------------+
    + Date +
    +++++++++++++++++
    Let's say for example user have to the use the form to enter all 10 items or few like 5 on their stock form into 4 different textbox field each lines of your form, however these items go into a "Stock_table" under Single insert transaction query when submit button is pressed.
    Please anyone help me out, on how to get this concept started.

    Hello,
    I have a way to do this, but it would take some hand coding on your part. If you feel comfortable hand writing php code and doing manual database calls, specificaly database INSERT calls you should be fine.
    Create a custom form using the ADDT Custom Form Wizard that has all the rows and fields you need. This may take a bit if you are adding the ability for up to 20 rows, as per your diagram of the form area. The nice thing about using ADDT to create the form is that you can setup the form validation at the same time. Leave the last step in the Custom Form Wizard blank. You can add a custom database call here, but I would leave it blank.
    Next, under ADDT's Forms Server Behaviors, select Custom Trigger. At the Basic tab, you enter your custom php code that will be executed. Here you are going to want to put your code that will check if a value has been entered in the form and then do a database INSERT operation on the Stock_table with that row. The advanced tab lets you set the order of operations and the name of the Custom Trigger. By default, it is set to AFTER. This means that the Custom Trigger will get executed AFTER the form data is processed by the Custom Form Transaction.
    I usually just enter TEST into the "Basic" tab of the Custom Trigger. Then set my order of operations in the "Advanced" tab and close the Custom Trigger. Then I go to the code view for that page in Dreamweaver and find the Custom Trigger function and edit the code manually. It's much easier this way because the Custom Trigger wizard does not show you formatting on the code, and you don't have to keep opening the Wizard to edit and test your code.
    Your going to have to have the Custom Trigger fuction do a test on the submitted form data. If data is present, then INSERT into database. Here's a basic example of what you need to do:
    In your code view, the Custom Trigger will look something like this:
    function Trigger_Custom(&$tNG) {
    if($tNG->getColumnValue("Item_1")) {
    $item1 = $tNG->getColumnValue("Item_1");
    $textbox1_1 = $tNG->getColumnValue("Textbox_1");
    $textbox1_2 = $tNG->getColumnValue("Textbox_2");
    $textbox1_3 = $tNG->getColumnValue("Textbox_3");
    $date1 = $tNG->getColumnValue("Textbox_3");
    $queryAdd = "INSERT INTO Stock_table
    (item, Qty_In, Qty_Out, Balance, Date) VALUES($item1, $textbox1_1, $textbox1_2, $textbox1_3, $date1)"
    $result = mysql_query($queryAdd) or die(mysql_error());
    This code checks to see if the form input field named Item_1 is set. If so, then get the rest of the values for the first item and insert them into the database. You would need to do this for each row in your form. So the if you let the customer add 20 rows, you would need to check 20 times to see if the data is there or write the code so that it stops once it encounters an empty Item field. To exit a Custom Trigger, you can return NULL; and it will jump out of the function. You can also throw custom error message out of triggers, but this post is already way to long to get into that.
    $tNG->getColumnValue("Item_1") is used to retrieve the value that was set by the form input field named Item_1. This field is named by the Custom Form Wizard when you create your form. You can see what all the input filed names are by looking in the code view for something like:
    // Add columns
    $customTransaction->addColumn("Item_1", "STRING_TYPE", "POST", "Item_1");
    There will be one for each field you created with the Custom Form Wizard.
    Unfortunately, I don't have an easy way to do what you need. Maybe there is a way, but since none of the experts have responded, I thought I would point you in a direction. You should read all you can about Custom Triggers in the ADDT documentation/help pdf to give you more detailed information about how Custom Triggers work.
    Hope this helps.
    Shane

  • How do I keep multiple tabs from loading all at once when I open Firefox?

    How do I prevent multiple tabs from loading every time I access Firefox? These are open tabs, but I do not want them to open simultaneously every time I want to open a new tab. Then I have to minimize each one in order to access other applications on my desktop. Please advise.

    Tools > Options -> General - Startup = select what you want Firefox to do on startup there
    '''Blank Page''' or '''Homepage''' ''(as long as those pages aren't all your Homepages)'' are alternatives to '''''windows and tabs from last time'''''
    Or as Vivek.Wilfred mentioned, upgrade to Firefox 8.0.1 where you have abother option - Don't load tabs until selected.

  • How do I retrieve multiple files from my trashcan?

    I removed everything from my "finder" to my trashcan; I found that I had multiple duplicates in images, and I thought that was an easy way to get rid of them. But then my iPhoto started acting weird and when I contacted support, was told that I had to "put back" each file. There are roughly 17,000 images. I am overwhelmed to say the least. Suggestions? I tried highlighting several at a time, but that doesn't work.

    Yes, but it puts the files into a .zip file that is "corrupted, encrypted, empty or in an incompatible format".
     Debbie
    Don't tell God how big your storm is.  Tell the storm how big your God is!
          From: Pat Willener <[email protected]>
    To: Debbie Fisher <[email protected]>
    Sent: Wednesday, October 8, 2014 12:56 AM
    Subject:  how do i move multiple files from acrobat.com to my pc?
    how do i move multiple files from acrobat.com to my pc?
    created by Pat Willener in Adobe acrobat.com services - View the full discussionActually, if you go to https://cloud.acrobat.com/files you can check the checkboxes on the left of your files list, then click on the Download button to download multiple files. https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6802984-681636/900-380/acroba t.com.png  Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6802984#6802984 Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:  To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.  Start a new discussion in Adobe acrobat.com services by email or at Adobe Community For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How do you print multiple photos from iphoto?

    How do you print multiple photos from iphoto?

    select the photo and print - select the printer, paper size an print size, then click customize and under setting select multiple photos per page and click print - make any printer specific selections and pnt to make the prints
    LN

  • How do you  select multiple photos from photostream to move to a folder

    how do i select multiple photos from photostream to move to a folder in iphoto

    Hello Tiggertiffany,
    Thanks for using Apple Support Communities.
    If you need to select multiple items on iCloud.com then you can use the common procedure to select multiple items by either holding Command or Shift on your keyboard.
    To select multiple files or folders, hold down the Command (⌘) key, then click the items.
    To select multiple files or folders that are listed together, click the first item you want to select, hold down the Shift key, then click the last item.
    OS X Yosemite: select files or folders
    Have a great weekend,
    Alex H.

  • How do i email multiple photos from iphoto

    how do i email multiple photos from iphoto?

    I have OSX 10.6.8 and use the Photo Browser from within the mail app to add iPhoto pics to emails.

  • How do I delete multiple photos from library?

    Hi All
    On my iphone - how do I delete multiple photos from the library without having to do 1 at a time?
    Thanks

    In the album, tap on the little forward arrow in the upper right corner. From there you can tap as many photos as you'd like, and at the bottom, you'll have the options to Share, Copy, Add To, or Delete.

  • How do I delete multiple emails from my gmail account on my iPad?

    How do I delete multiple emails from my gmail account on my iPad?

    While looking at your inbox on the left, tap Edit and then tap the circle next to each email you want to delete then hit the trash can icon.

  • How do I erase multiple contacts from my I phone without having to do one at a time?

    How do I erase Multiple contacts from my I phone without having to edit one at a time?  Please help

    OS X Lion. 10.7. Your profile says your running 10.6.8, which is Snow Leopard. You need 10.7 to use iCloud with your Mac.

  • TS3899 how can i delete multiple emails from my IPhone 5C from the inbox?

    How can i delete multiple emails from my inbox from my IPhone 5c?

    Use command-click to select multiple messages, one at a time.  Use shift-click to select a contiguous set of messages (just like in the Finder).  Then press the delete key.

Maybe you are looking for

  • Need help connecting Dell U2713HM monitor to MacBook Pro

    What is the best way to connect a Dell U2713HM monitor to MacBook Pro OS 10.7.5 to maximize the resolution 2560 x 1440? I was using a VGA adapter on my old Viewsonic monitor that hooked into the Thunderbolt port, I think. When I use my old adapter wi

  • In IE, they have a refresh screen button, you do not..how do I refresh screen w/you?

    In Internet Explorer, in the tools bar there is a refresh screen button, I can not find it in your tool bar in Mozilla Firefox. Please tell me how to refresh a screen in this web. Thanks ! If you go to IE you will see it in the tool bar under the add

  • Problems connecting ipod to itunes

    Hi, just bought a new ipod touch, and i downloaded the itunes from the website, itunes 7. but it doesn't seem to want to connect to my ipod, the message that keeps coming up is: "this ipod cannot be used because the required software is not installed

  • RP Address in MULTICAST

    I have few doubts about Multicast RP address We have MPLS ISP backbone network, here two P routers are configured as RP address(IN GLOBAL) and MSDP is running between them. Now, my doubts are All the Multicast customer we are giving is under MVPN onl

  • Captivate 4 doesn't work with windows 7  - 64 bit system

    I've tried to install captivate 4 on my pc with processor Intel core 2 duo, Microsoft Windows 7 Home premium, system based on 64 bit system. When you try to make a simulation, after registration you cannot see the slides. If you try also to open a cp